ncdu: update from 1.10 to 1.11

This commit is contained in:
Pascal Wittmann 2015-05-29 20:55:59 +02:00
parent fd1fb0403c
commit e928a5379f

View file

@ -2,19 +2,20 @@
stdenv.mkDerivation rec {
name = "ncdu-${version}";
version = "1.10";
version = "1.11";
src = fetchurl {
url = "http://dev.yorhel.nl/download/${name}.tar.gz";
sha256 = "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm";
sha256 = "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh";
};
buildInputs = [ ncurses ];
meta = {
meta = with stdenv.lib; {
description = "Ncurses disk usage analyzer";
homepage = http://dev.yorhel.nl/ncdu;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}