fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, pythonPackages, fetchurl }:
2pythonPackages.buildPythonApplication rec {
3 name = "bleachbit-${version}";
4 version = "1.8";
5
6 namePrefix = "";
7
8 src = fetchurl {
9 url = "mirror://sourceforge/bleachbit/bleachbit-1.8.tar.bz2";
10 sha256 = "dbf50fcbf24b8b3dd1c4325cd62352628d089f88a76eab804df5d90c872ee592";
11 };
12
13 buildInputs = [ pythonPackages.wrapPython ];
14
15 doCheck = false;
16
17 postInstall = ''
18 mkdir -p $out/bin
19 cp bleachbit.py $out/bin/bleachbit
20 chmod +x $out/bin/bleachbit
21
22 substituteInPlace $out/bin/bleachbit --replace "#!/usr/bin/env python" "#!${pythonPackages.python.interpreter}"
23 '';
24
25 propagatedBuildInputs = with pythonPackages; [ pygtk sqlite3 ];
26
27 meta = {
28 homepage = "http://bleachbit.sourceforge.net";
29 description = "A program to clean your computer";
30 longDescription = "BleachBit helps you easily clean your computer to free space and maintain privacy.";
31 license = stdenv.lib.licenses.gpl3;
32 maintainers = with stdenv.lib.maintainers; [ leonardoce ];
33 };
34}