Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2018-12-27 18:11:34 +01:00
84 changed files with 1945 additions and 7207 deletions
-28
View File
@@ -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 ];
};
}