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

26 lines
622 B
Nix
Raw Normal View History

2014-12-24 15:21:37 +01:00
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
2015-09-06 20:55:32 +02:00
name = "progress-${version}";
2015-09-05 11:07:54 +02:00
version = "0.9";
src = fetchFromGitHub {
owner = "Xfennec";
2015-09-06 20:55:32 +02:00
repo = "progress";
2014-12-24 15:21:37 +01:00
rev = "v${version}";
2015-09-05 11:07:54 +02:00
sha256 = "07bl5fsr538nk4l8vwj1kf5bivlh3a8cy8jliqfadxmhf1knn2mw";
};
2014-12-24 15:21:37 +01:00
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
2015-09-06 20:55:32 +02:00
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 ];
};
}