python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / progress / default.nix
blob9feee484170e629856ed8dc2c2d76f6f00317fec
1 { lib, stdenv, fetchFromGitHub, pkg-config, ncurses, which }:
3 stdenv.mkDerivation rec {
4   pname = "progress";
5   version = "0.16";
7   src = fetchFromGitHub {
8     owner = "Xfennec";
9     repo = "progress";
10     rev = "v${version}";
11     sha256 = "sha256-kkEyflyBaQ5hUVo646NUuC1u54uzLJJsVFej9pMEwT0=";
12   };
14   nativeBuildInputs = [ pkg-config which ];
15   buildInputs = [ ncurses ];
17   makeFlags = [ "PREFIX=$(out)" ];
19   meta = with 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   };