2019-01-22 15:16:59 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, imagemagick, feh, isPy3k }:
|
2018-04-06 08:57:20 +01:00
|
|
|
|
2019-01-22 15:16:59 +00:00
|
|
|
buildPythonPackage rec {
|
2018-04-06 08:57:20 +01:00
|
|
|
pname = "pywal";
|
2019-02-09 11:48:43 +00:00
|
|
|
version = "3.3.0";
|
2018-04-06 08:57:20 +01:00
|
|
|
|
2019-01-22 15:16:59 +00:00
|
|
|
src = fetchPypi {
|
2018-04-06 08:57:20 +01:00
|
|
|
inherit pname version;
|
2019-02-09 11:48:43 +00:00
|
|
|
sha256 = "1drha9kshidw908k7h3gd9ws2bl64ms7bjcsa83pwb3hqa9bkspg";
|
2018-04-06 08:57:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
mkdir tmp
|
|
|
|
HOME=$PWD/tmp
|
|
|
|
'';
|
|
|
|
|
2018-12-26 10:57:27 +00:00
|
|
|
patches = [
|
|
|
|
./convert.patch
|
2018-12-26 11:57:19 +00:00
|
|
|
./feh.patch
|
2018-12-26 10:57:27 +00:00
|
|
|
];
|
|
|
|
|
2019-01-22 15:16:59 +00:00
|
|
|
# Invalid syntax
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-12-26 10:57:27 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pywal/backends/wal.py --subst-var-by convert "${imagemagick}/bin/convert"
|
2018-12-26 11:57:19 +00:00
|
|
|
substituteInPlace pywal/wallpaper.py --subst-var-by feh "${feh}/bin/feh"
|
2018-12-26 10:57:27 +00:00
|
|
|
'';
|
|
|
|
|
2018-04-06 08:57:20 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Generate and change colorschemes on the fly. A 'wal' rewrite in Python 3.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dylanaraps/pywal";
|
2018-04-06 08:57:20 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ Fresheyeball ];
|
|
|
|
};
|
|
|
|
}
|