Commit 7c692619 authored by Tomo's avatar Tomo
Browse files

qdirstat: use stdenv.mkDerivation

Part of #180841
parent 59b63e5e
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
{
  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 ];