nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09-alpha 26 lines 676 B view raw
1{ stdenv, fetchFromGitHub, pkgconfig, ncurses, which }: 2 3stdenv.mkDerivation rec { 4 pname = "progress"; 5 version = "0.15"; 6 7 src = fetchFromGitHub { 8 owner = "Xfennec"; 9 repo = "progress"; 10 rev = "v${version}"; 11 sha256 = "1cnb4ixlhshn139mj5sr42k5m6gjjbyqvkn1324c47niwrgp7dqm"; 12 }; 13 14 nativeBuildInputs = [ pkgconfig which ]; 15 buildInputs = [ ncurses ]; 16 17 makeFlags = [ "PREFIX=$(out)" ]; 18 19 meta = with stdenv.lib; { 20 homepage = "https://github.com/Xfennec/progress"; 21 description = "Tool that shows the progress of coreutils programs"; 22 license = licenses.gpl3; 23 platforms = platforms.linux; 24 maintainers = with maintainers; [ pSub ]; 25 }; 26}