nixpkgs/pkgs/development/libraries/popt/default.nix

24 lines
503 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "popt-1.16";
2014-10-26 14:27:39 +00:00
src = fetchurl {
url = "http://rpm5.org/files/popt/${name}.tar.gz";
sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77";
};
patches = stdenv.lib.optionals stdenv.isCygwin [
2014-10-26 14:27:39 +00:00
./1.16-cygwin.patch
./1.16-vpath.patch
];
doCheck = false; # fails
2014-10-26 14:27:39 +00:00
2018-10-25 20:26:53 +00:00
meta = with stdenv.lib; {
description = "Command line option parsing library";
2018-10-25 20:26:53 +00:00
platforms = platforms.unix;
license = licenses.mit;
};
}