nixpkgs/pkgs/tools/misc/ncdu/1.nix
Anton Mosich da5f5eea70 ncdu_1: 1.17 -> 1.18.1
Also sets meta.mainProgram
2023-08-25 21:26:21 +02:00

23 lines
569 B
Nix

{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "ncdu";
version = "1.18.1";
src = fetchurl {
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
sha256 = "sha256-fA+h6ynYWq7UuhdBZL27jwEbXDkNAXxX1mj8cjEzJAU=";
};
buildInputs = [ ncurses ];
meta = with 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 ];
mainProgram = "ncdu";
};
}