Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ncdu: update from 1.10 to 1.11

+6 -5
+6 -5
pkgs/tools/misc/ncdu/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "ncdu-${version}"; 5 - version = "1.10"; 5 + version = "1.11"; 6 6 7 7 src = fetchurl { 8 8 url = "http://dev.yorhel.nl/download/${name}.tar.gz"; 9 - sha256 = "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"; 9 + sha256 = "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"; 10 10 }; 11 11 12 12 buildInputs = [ ncurses ]; 13 13 14 - meta = { 14 + meta = with stdenv.lib; { 15 15 description = "Ncurses disk usage analyzer"; 16 16 homepage = http://dev.yorhel.nl/ncdu; 17 - license = stdenv.lib.licenses.mit; 18 - platforms = stdenv.lib.platforms.all; 17 + license = licenses.mit; 18 + platforms = platforms.all; 19 + maintainers = with maintainers; [ pSub ]; 19 20 }; 20 21 }