3281c90060
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/duc/versions
26 lines
701 B
Nix
26 lines
701 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, tokyocabinet, cairo, pango, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "duc-${version}";
|
|
version = "1.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zevv";
|
|
repo = "duc";
|
|
rev = "${version}";
|
|
sha256 = "1i7ry25xzy027g6ysv6qlf09ax04q4vy0kikl8h0aq5jbxsl9q52";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ 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.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.lethalman ];
|
|
};
|
|
}
|