aboutsummaryrefslogtreecommitdiffstats
path: root/video/manimgl/mapbox-earcut.nix
diff options
context:
space:
mode:
authorNaoki Pross <np@0hm.ch>2021-10-20 19:08:25 +0200
committerNaoki Pross <np@0hm.ch>2021-10-20 19:08:25 +0200
commit2a8e1edcac88d92c50b8b7431fb5eef0c1241582 (patch)
tree477228b73d67230863ab706c6b60afbae22d73d0 /video/manimgl/mapbox-earcut.nix
parentTypos in theory, remove QAM, start QPSK picture (diff)
downloadFading-2a8e1edcac88d92c50b8b7431fb5eef0c1241582.tar.gz
Fading-2a8e1edcac88d92c50b8b7431fb5eef0c1241582.zip
Remove useless folders in video/
Diffstat (limited to 'video/manimgl/mapbox-earcut.nix')
-rw-r--r--video/manimgl/mapbox-earcut.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/video/manimgl/mapbox-earcut.nix b/video/manimgl/mapbox-earcut.nix
deleted file mode 100644
index d325401..0000000
--- a/video/manimgl/mapbox-earcut.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, pkgs, buildPythonPackage, fetchPypi }:
-
-buildPythonPackage rec {
- pname = "mapbox_earcut";
- version = "0.12.10";
- src = fetchPypi {
- inherit pname version;
- format = "setuptools";
- sha256 = "0ly48lijgd9inq07x42pfp9c24fn16vn9axpmfwqrkn979krbnah";
- };
-
- dontUseCmakeConfigure = true;
-
- nativeBuildInputs = with pkgs; [ cmake ];
-
- buildInputs = with pkgs.python3Packages; [
- setuptools_scm pybind11
- ];
-
- propagatedBuildInputs = with pkgs.python3Packages; [
- numpy
- ];
-
- meta = with lib; {};
-}