k4dirstat: init at 3.2.1
This commit is contained in:
parent
22c98819cc
commit
b5b84be95b
2 changed files with 35 additions and 0 deletions
33
pkgs/applications/misc/k4dirstat/default.nix
Normal file
33
pkgs/applications/misc/k4dirstat/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ mkDerivation
|
||||
, extra-cmake-modules
|
||||
, fetchFromGitHub
|
||||
, kdoctools
|
||||
, kiconthemes
|
||||
, kio
|
||||
, kjobwidgets
|
||||
, kxmlgui
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "k4dirstat";
|
||||
version = "3.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jeromerobert";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "15xjb80jq6vhzvzx4l341f40d8a23w1334qh6cczqm9adfnzycp7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
buildInputs = [ kiconthemes kio kjobwidgets kxmlgui ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/jeromerobert/k4dirstat";
|
||||
description = "A small utility program that sums up disk usage for directory trees";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.raboof ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -20471,6 +20471,8 @@ in
|
|||
|
||||
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
||||
|
||||
k4dirstat = libsForQt5.callPackage ../applications/misc/k4dirstat { };
|
||||
|
||||
kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };
|
||||
|
||||
kdecoration-viewer = libsForQt5.callPackage ../tools/misc/kdecoration-viewer { };
|
||||
|
|
Loading…
Reference in a new issue