python.pkgs.pywal: hardcode path to feh

This commit is contained in:
Frederik Rietdijk
2018-12-26 12:57:19 +01:00
parent 302d53df2b
commit 3f93d68ebb
2 changed files with 41 additions and 5 deletions

View File

@@ -9,11 +9,6 @@ python3Packages.buildPythonApplication rec {
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
@@ -21,10 +16,12 @@ python3Packages.buildPythonApplication rec {
patches = [
./convert.patch
./feh.patch
];
postPatch = ''
substituteInPlace pywal/backends/wal.py --subst-var-by convert "${imagemagick}/bin/convert"
substituteInPlace pywal/wallpaper.py --subst-var-by feh "${feh}/bin/feh"
'';
meta = with lib; {