cv: adopt its new name 'progress'

This commit is contained in:
Pascal Wittmann
2015-09-06 20:57:57 +02:00
parent 167383c7bf
commit ffc12580a6
2 changed files with 6 additions and 5 deletions
+25
View File
@@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
name = "progress-${version}";
version = "0.9";
src = fetchFromGitHub {
owner = "Xfennec";
repo = "progress";
rev = "v${version}";
sha256 = "07bl5fsr538nk4l8vwj1kf5bivlh3a8cy8jliqfadxmhf1knn2mw";
};
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = https://github.com/Xfennec/progress;
description = "Tool that shows the progress of coreutils programs";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}