about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-12-26 11:57:27 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-26 11:58:59 +0100
commit281981a6df9ca93fe7237676757be316ff51e98f (patch)
tree8e44e300c7021b5ae24fca82890e6f0ff8566b87 /pkgs/tools/graphics
parentde0de8903f5140e63ed62629f2e9b4b7ead572bd (diff)
pywal: move to pythonPackages and inject path to convert
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/pywal/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/tools/graphics/pywal/default.nix b/pkgs/tools/graphics/pywal/default.nix
deleted file mode 100644
index 4d493bdd73ebe..0000000000000
--- a/pkgs/tools/graphics/pywal/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, python3Packages, imagemagick, feh }:
-
-python3Packages.buildPythonApplication rec {
-  pname = "pywal";
-  version = "3.2.1";
-
-  src = python3Packages.fetchPypi {
-    inherit pname version;
-    sha256 = "1pj30h19ijwhmbm941yzbkgr19q06dhp9492h9nrqw1wfjfdbdic";
-  };
-
-  # necessary for imagemagick to be found during tests
-  buildInputs = [ imagemagick ];
-
-  makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ imagemagick feh ]}" ];
-
-  preCheck = ''
-    mkdir tmp
-    HOME=$PWD/tmp
-  '';
-
-  meta = with lib; {
-    description = "Generate and change colorschemes on the fly. A 'wal' rewrite in Python 3.";
-    homepage = https://github.com/dylanaraps/pywal;
-    license = licenses.mit;
-    maintainers = with maintainers; [ Fresheyeball ];
-  };
-}