nixpkgs/pkgs/tools/misc/ncdu/default.nix
R. RyanTM 24d22fe619 ncdu: 1.14 -> 1.14.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ncdu/versions
2019-08-19 17:48:11 -07:00

22 lines
542 B
Nix

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
name = "ncdu-${version}";
version = "1.14.1";
src = fetchurl {
url = "https://dev.yorhel.nl/download/${name}.tar.gz";
sha256 = "0gp1aszzrh8b6fhv8fspvkmr0qwc55z6z4w6l7r8j09sq7lf0cdy";
};
buildInputs = [ ncurses ];
meta = with stdenv.lib; {
description = "Disk usage analyzer with an ncurses interface";
homepage = https://dev.yorhel.nl/ncdu;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}