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