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

22 lines
558 B
Nix
Raw Normal View History

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