Unverified Commit a9aa9200 authored by Donovan Glover's avatar Donovan Glover Committed by GitHub
Browse files

qdirstat: 1.9 -> 2.0; update to qt6 (#485528)

parents c166a77e 7b657646
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  fetchFromGitHub,
  stdenv,
  libsForQt5,
  qt6Packages,
  coreutils,
  xdg-utils,
  bash,
@@ -13,20 +13,21 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "qdirstat";
  version = "1.9";
  version = "2.0";

  src = fetchFromGitHub {
    owner = "shundhammer";
    repo = "qdirstat";
    rev = finalAttrs.version;
    hash = "sha256-pwdmltHDNwUMx1FNOoiXl5Pna0zlKqahmicBCN6UVSU=";
    hash = "sha256-qkXu3W6umAlSVlTXaQT/UmC3gzVt6BVy4EZzLBYI94s=";
  };

  nativeBuildInputs = [
    makeWrapper
  ]
  ++ (with libsForQt5; [
  ++ (with qt6Packages; [
    qmake
    qt5compat
    wrapQtAppsHook
  ]);