nixpkgs/pkgs/tools/misc/cv/default.nix

26 lines
604 B
Nix
Raw Normal View History

2014-12-24 06:21:37 -08:00
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
2014-12-24 06:21:37 -08:00
name = "cv-${version}";
2015-09-05 02:07:54 -07:00
version = "0.9";
src = fetchFromGitHub {
owner = "Xfennec";
repo = "cv";
2014-12-24 06:21:37 -08:00
rev = "v${version}";
2015-09-05 02:07:54 -07:00
sha256 = "07bl5fsr538nk4l8vwj1kf5bivlh3a8cy8jliqfadxmhf1knn2mw";
};
2014-12-24 06:21:37 -08:00
buildInputs = [ ncurses ];
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 ];
};
}