1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

progress: 0.13 -> 0.13.1

This commit is contained in:
Pascal Wittmann 2016-11-19 21:38:54 +01:00
parent 2aea31b52e
commit 31a770b21c
No known key found for this signature in database
GPG key ID: C899ACE7E2322852

View file

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, pkgconfig, ncurses }:
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, which }:
stdenv.mkDerivation rec {
name = "progress-${version}";
version = "0.13";
version = "0.13.1";
src = fetchFromGitHub {
owner = "Xfennec";
repo = "progress";
rev = "v${version}";
sha256 = "0xzpcvz4n0h8m0mhxgpvn1qg8993naip3asjbk3nmk3d4lbyh0b3";
sha256 = "13nhczzb0zqg5zfpf5vcfi6aahyb8lrr52pvpjgi1zfkh2m9vnig";
};
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig which ];
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];