about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-11-11 09:54:28 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-11-11 09:54:28 +0100
commit961180afc8ef4efd94487e2fc9d86b10a6099d93 (patch)
tree9c91eba6861caa09ecccfe99a6ca97a76d1ae28a /pkgs/tools/graphics
parent3c4f70996e46ed7e9c3a480f51398194d31e3e93 (diff)
scour: call via python-packages.nix
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/scour/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/tools/graphics/scour/default.nix b/pkgs/tools/graphics/scour/default.nix
deleted file mode 100644
index 11932aabe0bbd..0000000000000
--- a/pkgs/tools/graphics/scour/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, python3 }:
-
-with python3.pkgs;
-
-buildPythonApplication rec {
-  pname = "scour";
-  version = "0.37";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "05k1f8i8v7sp5v39lian865vwvapq05a6vmvk7fwnxv8kivi6ccn";
-  };
-
-  propagatedBuildInputs = [ six ];
-
-  meta = with stdenv.lib; {
-    description = "An SVG Optimizer / Cleaner ";
-    homepage    = https://github.com/scour-project/scour;
-    license     = licenses.asl20;
-    maintainers = with maintainers; [ worldofpeace ];
-    platforms   = platforms.unix;
-  };
-}