mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
97c40baa9c
rpm5.org no longer exists as a domain
25 lines
538 B
Nix
25 lines
538 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "popt";
|
|
version = "1.16";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/p/popt/popt_${version}.orig.tar.gz";
|
|
sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77";
|
|
};
|
|
|
|
patches = stdenv.lib.optionals stdenv.isCygwin [
|
|
./1.16-cygwin.patch
|
|
./1.16-vpath.patch
|
|
];
|
|
|
|
doCheck = false; # fails
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Command line option parsing library";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|