nixpkgs/pkgs/applications/misc/bleachbit/default.nix

35 lines
1,005 B
Nix
Raw Normal View History

2015-07-10 08:29:51 +00:00
{ stdenv, pythonPackages, fetchurl }:
pythonPackages.buildPythonApplication rec {
2015-07-10 08:29:51 +00:00
name = "bleachbit-${version}";
version = "2.0";
2015-07-10 08:29:51 +00:00
namePrefix = "";
src = fetchurl {
2016-07-03 14:00:04 +00:00
url = "mirror://sourceforge/bleachbit/${name}.tar.bz2";
sha256 = "0ps98zx4n13q92bq7ykqi6hj3i7brdqgm87i9gk6ibvljp1vxdz9";
2015-07-10 08:29:51 +00:00
};
buildInputs = [ pythonPackages.wrapPython ];
doCheck = false;
postInstall = ''
mkdir -p $out/bin
cp bleachbit.py $out/bin/bleachbit
chmod +x $out/bin/bleachbit
substituteInPlace $out/bin/bleachbit --replace "#!/usr/bin/env python" "#!${pythonPackages.python.interpreter}"
'';
2016-10-13 22:03:12 +00:00
propagatedBuildInputs = with pythonPackages; [ pygtk ];
2015-07-10 08:29:51 +00:00
meta = {
homepage = http://bleachbit.sourceforge.net;
2015-07-10 08:29:51 +00:00
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 ];
};
}