mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
35 lines
1006 B
Nix
35 lines
1006 B
Nix
{ stdenv, pythonPackages, fetchurl }:
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "bleachbit-${version}";
|
|
version = "1.12";
|
|
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bleachbit/${name}.tar.bz2";
|
|
sha256 = "1x58n429q1c77nfpf2g3vyh6yq8wha69zfzmxf1rvjvcvvmqs62m";
|
|
};
|
|
|
|
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 ];
|
|
|
|
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 ];
|
|
};
|
|
}
|