Skip to content

Commit 1b71ecc

Browse files
committed
ncdu_1: 1.18.1 -> 1.22
Changelog: https://dev.yorhel.nl/ncdu/changes
1 parent b440606 commit 1b71ecc

File tree

1 file changed

+5
-2
lines changed
  • pkgs/tools/misc/ncdu

1 file changed

+5
-2
lines changed

pkgs/tools/misc/ncdu/1.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,21 @@
22
lib,
33
stdenv,
44
fetchurl,
5+
pkg-config,
56
ncurses,
67
}:
78

89
stdenv.mkDerivation rec {
910
pname = "ncdu";
10-
version = "1.18.1";
11+
version = "1.22";
1112

1213
src = fetchurl {
1314
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
14-
sha256 = "sha256-fA+h6ynYWq7UuhdBZL27jwEbXDkNAXxX1mj8cjEzJAU=";
15+
sha256 = "sha256-CtbAltwE1RIFgRBHYMAbj06X1BkdbJ73llT6PGkaF2s=";
1516
};
1617

18+
nativeBuildInputs = [ pkg-config ];
19+
1720
buildInputs = [ ncurses ];
1821

1922
meta = with lib; {

0 commit comments

Comments
 (0)