duc: init at 1.3.3
This commit is contained in:
parent
1d36e6ec07
commit
73bf336934
22
pkgs/tools/misc/duc/default.nix
Normal file
22
pkgs/tools/misc/duc/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, pkgconfig, tokyocabinet, cairo, pango, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "duc-${version}";
|
||||
version = "1.3.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://duc.zevv.nl/release/${name}.tar.gz";
|
||||
sha256 = "09mp8cq6s43sfhvms4mwhx3lw51vkaxgg34fbfbimafyjh4jdx3k";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig tokyocabinet cairo pango ncurses ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://duc.zevv.nl/;
|
||||
description = "Collection of tools for inspecting and visualizing disk usage";
|
||||
license = licenses.gplv2;
|
||||
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.lethalman ];
|
||||
};
|
||||
}
|
@ -1312,6 +1312,8 @@ in
|
||||
|
||||
dub = callPackage ../development/tools/build-managers/dub { };
|
||||
|
||||
duc = callPackage ../tools/misc/duc { };
|
||||
|
||||
duff = callPackage ../tools/filesystems/duff { };
|
||||
|
||||
dumptorrent = callPackage ../tools/misc/dumptorrent { };
|
||||
|
Loading…
Reference in New Issue
Block a user