mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
35 lines
1 KiB
Nix
35 lines
1 KiB
Nix
{ stdenv, pythonPackages, fetchurl, gettext }:
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "bleachbit";
|
|
version = "3.0";
|
|
|
|
format = "other";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
|
sha256 = "18ns9hms671b4l0189m1m2agprkydnpvyky9q2f5hxf35i9cn67d";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
# Patch the many hardcoded uses of /usr/share/ and /usr/bin
|
|
postPatch = ''
|
|
find -type f -exec sed -i -e 's@/usr/share@${placeholder "out"}/share@g' {} \;
|
|
find -type f -exec sed -i -e 's@/usr/bin@${placeholder "out"}/bin@g' {} \;
|
|
'';
|
|
|
|
dontBuild = true;
|
|
|
|
installFlags = [ "prefix=${placeholder "out"}" ];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygtk ];
|
|
|
|
meta = {
|
|
homepage = http://bleachbit.sourceforge.net;
|
|
description = "A program to clean your computer";
|
|
longDescription = "BleachBit helps you easily clean your computer to free space and maintain privacy.";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ leonardoce ];
|
|
};
|
|
}
|