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

27 lines
686 B
Nix
Raw Normal View History

2016-11-19 20:38:54 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, which }:
stdenv.mkDerivation rec {
2015-09-06 18:55:32 +00:00
name = "progress-${version}";
2016-11-19 20:38:54 +00:00
version = "0.13.1";
src = fetchFromGitHub {
owner = "Xfennec";
2015-09-06 18:55:32 +00:00
repo = "progress";
2014-12-24 14:21:37 +00:00
rev = "v${version}";
2016-11-19 20:38:54 +00:00
sha256 = "13nhczzb0zqg5zfpf5vcfi6aahyb8lrr52pvpjgi1zfkh2m9vnig";
};
2016-11-19 20:38:54 +00:00
nativeBuildInputs = [ pkgconfig which ];
2014-12-24 14:21:37 +00:00
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
2015-09-06 18:55:32 +00: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 ];
};
}