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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
569 B
Nix
Raw Normal View History

2022-07-21 04:45:49 +00:00
{ lib, stdenv, fetchurl, ncurses }:
2021-12-26 00:38:11 +00:00
stdenv.mkDerivation rec {
pname = "ncdu";
version = "1.18.1";
2021-12-26 00:38:11 +00:00
src = fetchurl {
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
sha256 = "sha256-fA+h6ynYWq7UuhdBZL27jwEbXDkNAXxX1mj8cjEzJAU=";
2021-12-26 00:38:11 +00:00
};
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;
2023-07-23 17:30:22 +00:00
maintainers = with maintainers; [ pSub ];
mainProgram = "ncdu";
2021-12-26 00:38:11 +00:00
};
}