bleachbit: 4.0.0 -> 4.4.0

authored by

mbprtpmnr and committed by
Jonathan Ringer
392ea03d d01b3446

+5 -4
+5 -4
pkgs/applications/misc/bleachbit/default.nix
··· 12 12 13 13 python3Packages.buildPythonApplication rec { 14 14 pname = "bleachbit"; 15 - version = "4.0.0"; 15 + version = "4.4.0"; 16 16 17 17 format = "other"; 18 18 19 19 src = fetchurl { 20 20 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2"; 21 - sha256 = "1dn3h6lr9ldbfpvgq9sdlk972sxhwalgj2f377qbqibm3yfxzpil"; 21 + sha256 = "0kqqfzq6bh03n7kxb9vd483bqi1cklfvj35a7h4iqk96sq1xv8z6"; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 44 44 postPatch = '' 45 45 find -type f -exec sed -i -e 's@/usr/share@${placeholder "out"}/share@g' {} \; 46 46 find -type f -exec sed -i -e 's@/usr/bin@${placeholder "out"}/bin@g' {} \; 47 + find -type f -exec sed -i -e 's@${placeholder "out"}/bin/python3@${python3Packages.python}/bin/python3@' {} \; 47 48 ''; 48 49 49 50 dontBuild = true; ··· 52 53 "prefix=${placeholder "out"}" 53 54 ]; 54 55 55 - # prevent double wrapping from wrapGApps and wrapPythonProgram 56 + # Prevent double wrapping from wrapGApps and wrapPythonProgram 56 57 dontWrapGApps = true; 57 58 makeWrapperArgs = [ 58 59 "\${gappsWrapperArgs[@]}" ··· 65 66 description = "A program to clean your computer"; 66 67 longDescription = "BleachBit helps you easily clean your computer to free space and maintain privacy."; 67 68 license = licenses.gpl3; 68 - maintainers = with maintainers; [ leonardoce ]; 69 + maintainers = with maintainers; [ leonardoce mbprtpmnr ]; 69 70 }; 70 71 }