about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-12-27 18:11:34 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-27 18:11:34 +0100
commit10afccf1455167972b559f32b3b1495a07593cf1 (patch)
treeb0f0d3e167586472e629f336337a1e15f750a318 /pkgs/tools/graphics
parente039310f9673d8e4d4975c0aa97e7b294536e4b5 (diff)
parent22d2b84f0f76acc11c57c71ded207e2653bbef33 (diff)
Merge staging-next into staging
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 ];
-  };
-}