mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
24d22fe619
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
22 lines
542 B
Nix
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 ];
|
|
};
|
|
}
|