mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
34 lines
747 B
Nix
34 lines
747 B
Nix
{ 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;
|
|
};
|
|
}
|