bleachbit: init at 1.8
This commit is contained in:
parent
74f4b0d27a
commit
532678fa8b
3 changed files with 37 additions and 0 deletions
|
@ -133,6 +133,7 @@
|
|||
kragniz = "Louis Taylor <kragniz@gmail.com>";
|
||||
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
|
||||
lassulus = "Lassulus <lassulus@gmail.com>";
|
||||
leonardoce = "Leonardo Cecchi <leonardo.cecchi@gmail.com>";
|
||||
lethalman = "Luca Bruno <lucabru@src.gnome.org>";
|
||||
lhvwb = "Nathaniel Baxter <nathaniel.baxter@gmail.com>";
|
||||
lihop = "Leroy Hopson <nixos@leroy.geek.nz>";
|
||||
|
|
34
pkgs/applications/misc/bleachbit/default.nix
Normal file
34
pkgs/applications/misc/bleachbit/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, pythonPackages, fetchurl }:
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
name = "bleachbit-${version}";
|
||||
version = "1.8";
|
||||
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/bleachbit/bleachbit-1.8.tar.bz2";
|
||||
sha256 = "dbf50fcbf24b8b3dd1c4325cd62352628d089f88a76eab804df5d90c872ee592";
|
||||
};
|
||||
|
||||
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}"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ pygtk sqlite3 ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -10749,6 +10749,8 @@ let
|
|||
|
||||
bitmeter = callPackage ../applications/audio/bitmeter { };
|
||||
|
||||
bleachbit = callPackage ../applications/misc/bleachbit { };
|
||||
|
||||
blender = callPackage ../applications/misc/blender {
|
||||
python = python34;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue