added cv: Tool that shows the progress of coreutils programs

This commit is contained in:
Pascal Wittmann 2014-07-20 15:44:47 +02:00
parent c7add6c270
commit 52cf78ef22
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "cv-2014-07-20";
src = fetchFromGitHub {
owner = "Xfennec";
repo = "cv";
rev = "7441de974cc13f3b07903bb86c41be4e45c8e81b";
sha256 = "19ky88b52a8zcv7lx802y4zi3sp0cdhya08cnax0yvlwwq43w6x9";
};
buildInputs = [ ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = https://github.com/Xfennec/cv;
description = "Tool that shows the progress of coreutils programs";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}

View File

@ -609,6 +609,8 @@ let
flex = flex_2_5_35;
};
cv = callPackage ../tools/misc/cv { };
ditaa = callPackage ../tools/graphics/ditaa { };
direnv = callPackage ../tools/misc/direnv { };