1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00
nixpkgs/pkgs/tools/misc/progress/default.nix

27 lines
671 B
Nix
Raw Normal View History

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