bleachbit: use format="other", simplify.

Patch by @worldbypeace, during PR review.  Thanks!
This commit is contained in:
Will Dietz 2019-03-24 21:54:13 -05:00
parent 575df3a129
commit 34845f2f67

View File

@ -3,6 +3,8 @@ pythonPackages.buildPythonApplication rec {
pname = "bleachbit";
version = "2.2";
format = "other";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
sha256 = "1yj9bc3k6s1aib7znb79h5rybfv691zz4szxkwf9fm9nr0dws603";
@ -16,11 +18,13 @@ pythonPackages.buildPythonApplication rec {
find -type f -exec sed -i -e 's@/usr/bin@${placeholder "out"}/bin@g' {} \;
'';
doCheck = false;
dontBuild = true;
postInstall = ''
make install SHELL=${stdenv.shell} prefix=${placeholder "out"}
'';
installFlags = [ "prefix=${placeholder "out"}" ];
doCheck = true;
checkTarget = "tests";
propagatedBuildInputs = with pythonPackages; [ pygtk ];