qdirstat: use stdenv.mkDerivation

Part of #180841
This commit is contained in:
Tomo 2024-10-14 16:49:51 +00:00
parent 59b63e5e98
commit 7c69261980

View File

@ -1,6 +1,7 @@
{
lib,
fetchFromGitHub,
stdenv,
libsForQt5,
coreutils,
xdg-utils,
@ -9,7 +10,7 @@
perlPackages,
}:
libsForQt5.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "qdirstat";
version = "1.9";
@ -20,7 +21,12 @@ libsForQt5.mkDerivation rec {
hash = "sha256-pwdmltHDNwUMx1FNOoiXl5Pna0zlKqahmicBCN6UVSU=";
};
nativeBuildInputs = [ makeWrapper ] ++ (with libsForQt5; [ qmake ]);
nativeBuildInputs =
[ makeWrapper ]
++ (with libsForQt5; [
qmake
wrapQtAppsHook
]);
buildInputs = [ perlPackages.perl ];