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

26 lines
606 B
Nix
Raw Normal View History

2014-12-24 15:21:37 +01:00
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
2014-12-24 15:21:37 +01:00
name = "cv-${version}";
2015-06-24 19:19:40 +02:00
version = "0.7.1";
src = fetchFromGitHub {
owner = "Xfennec";
repo = "cv";
2014-12-24 15:21:37 +01:00
rev = "v${version}";
2015-06-24 19:19:40 +02:00
sha256 = "1dcq45mz443mzzf344ap5dgsazhcrn3aislxs57jqbg4p5bbmh1b";
};
2014-12-24 15:21:37 +01: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 ];
};
}