about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/bleachbit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/bleachbit/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/misc/bleachbit/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/misc/bleachbit/default.nix b/nixpkgs/pkgs/applications/misc/bleachbit/default.nix
new file mode 100644
index 000000000000..3f13972de9bb
--- /dev/null
+++ b/nixpkgs/pkgs/applications/misc/bleachbit/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, pythonPackages, fetchurl, gettext }:
+pythonPackages.buildPythonApplication rec {
+  pname = "bleachbit";
+  version = "2.2";
+
+  format = "other";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
+    sha256 = "1yj9bc3k6s1aib7znb79h5rybfv691zz4szxkwf9fm9nr0dws603";
+  };
+
+  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 ];
+  };
+}