tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ncdu: update from 1.10 to 1.11
Pascal Wittmann
10 years ago
e928a537
fd1fb040
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
ncdu
default.nix
+6
-5
pkgs/tools/misc/ncdu/default.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "ncdu-${version}";
5
5
-
version = "1.10";
5
5
+
version = "1.11";
6
6
7
7
src = fetchurl {
8
8
url = "http://dev.yorhel.nl/download/${name}.tar.gz";
9
9
-
sha256 = "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm";
9
9
+
sha256 = "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh";
10
10
};
11
11
12
12
buildInputs = [ ncurses ];
13
13
14
14
-
meta = {
14
14
+
meta = with stdenv.lib; {
15
15
description = "Ncurses disk usage analyzer";
16
16
homepage = http://dev.yorhel.nl/ncdu;
17
17
-
license = stdenv.lib.licenses.mit;
18
18
-
platforms = stdenv.lib.platforms.all;
17
17
+
license = licenses.mit;
18
18
+
platforms = platforms.all;
19
19
+
maintainers = with maintainers; [ pSub ];
19
20
};
20
21
}