nixpkgs/pkgs/tools/misc/ncdu/default.nix

22 lines
550 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "ncdu";
version = "1.15.1";
src = fetchurl {
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
sha256 = "1c1zxalm5asyhn4p1hd51h7khw17515gbqmvdz63kc8xpx6xqbdh";
};
buildInputs = [ ncurses ];
meta = with lib; {
2019-02-05 07:39:57 +00:00
description = "Disk usage analyzer with an ncurses interface";
homepage = "https://dev.yorhel.nl/ncdu";
2015-05-29 18:55:59 +00:00
license = licenses.mit;
platforms = platforms.all;
2020-06-08 03:24:36 +00:00
maintainers = with maintainers; [ pSub zowoq ];
};
}