nixpkgs/pkgs/applications/misc/qdirstat/default.nix

56 lines
1.4 KiB
Nix
Raw Normal View History

2017-07-30 09:51:57 +00:00
{ stdenv, fetchFromGitHub, qmake
2017-07-31 14:06:34 +00:00
, coreutils, xdg_utils, bash
2019-08-07 09:20:03 +00:00
, makeWrapper, perlPackages, mkDerivation }:
2017-07-30 09:51:57 +00:00
let
2020-02-14 21:01:24 +00:00
version = "1.6.1";
2019-08-07 09:20:03 +00:00
in mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "qdirstat";
inherit version;
2017-07-30 09:51:57 +00:00
src = fetchFromGitHub {
owner = "shundhammer";
repo = "qdirstat";
2019-09-08 23:38:31 +00:00
rev = version;
2020-02-14 21:01:24 +00:00
sha256 = "0q77a347qv1aka6sni6l03zh5jzyy9s74aygg554r73g01kxczpb";
2017-07-30 09:51:57 +00:00
};
2017-07-31 14:06:34 +00:00
nativeBuildInputs = [ qmake makeWrapper ];
2017-07-30 09:51:57 +00:00
buildInputs = [ perlPackages.perl ];
2017-07-30 09:51:57 +00:00
2019-11-16 18:27:03 +00:00
postPatch = ''
2017-07-30 09:51:57 +00:00
substituteInPlace scripts/scripts.pro \
2019-01-11 19:31:36 +00:00
--replace /bin/true ${coreutils}/bin/true
2017-07-30 09:51:57 +00:00
2019-01-11 19:31:36 +00:00
for i in src/SysUtil.cpp src/FileSizeStatsWindow.cpp
do
2017-07-30 09:51:57 +00:00
substituteInPlace $i \
--replace /usr/bin/xdg-open ${xdg_utils}/bin/xdg-open
2017-07-30 09:51:57 +00:00
done
for i in src/Cleanup.cpp src/cleanup-config-page.ui
do
substituteInPlace $i \
--replace /bin/bash ${bash}/bin/bash \
--replace /bin/sh ${bash}/bin/sh
done
substituteInPlace src/StdCleanup.cpp \
--replace /bin/bash ${bash}/bin/bash
'';
2019-11-16 18:27:03 +00:00
qmakeFlags = [ "INSTALL_PREFIX=${placeholder "out"}" ];
2017-07-30 09:51:57 +00:00
2017-07-31 14:06:34 +00:00
postInstall = ''
wrapProgram $out/bin/qdirstat-cache-writer \
--set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.URI ]}"
2017-07-31 14:06:34 +00:00
'';
2017-07-30 09:51:57 +00:00
meta = with stdenv.lib; {
description = "Graphical disk usage analyzer";
homepage = src.meta.homepage;
license = licenses.gpl2;
maintainers = with maintainers; [ gnidorah ];
platforms = platforms.linux;
};
}