aboutsummaryrefslogtreecommitdiffstats
path: root/video/manimgl
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
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')
-rw-r--r--video/manimgl/default.nix30
-rw-r--r--video/manimgl/mapbox-earcut.nix25
2 files changed, 0 insertions, 55 deletions
diff --git a/video/manimgl/default.nix b/video/manimgl/default.nix
deleted file mode 100644
index cdab07e..0000000
--- a/video/manimgl/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, pkgs, buildPythonApplication, buildPythonPackage, fetchPypi, pythonOlder,
- manimpango, mapbox-earcut }:
-
-buildPythonApplication rec {
- pname = "manimgl";
- version = "1.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1bsrn72vjzfz3ldh3cjn9r2gxr18408ja2shz50qwh7jnwi8alyb";
- };
-
- preConfigure = ''
- sed -i '/argparse/d' manimgl.egg-info/requires.txt
- sed -i '/argparse/d' setup.cfg
- '';
-
- doCheck = false;
-
- propagatedBuildInputs = [ manimpango mapbox-earcut ] ++ (with pkgs; [
- texlive.combined.scheme-full ffmpeg
- ]) ++ (with pkgs.python3Packages; [
- cython sympy numpy pydub scipy pyyaml pyopengl pyopengl-accelerate moderngl moderngl-window
- matplotlib colour rich screeninfo tqdm validators
- ]);
-
- disabled = pythonOlder "3.7";
-
- meta = { };
-}
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; {};
-}