2009-04-22 08:16:45 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2011-12-28 21:48:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "popt-1.16";
|
2014-10-26 14:27:39 +00:00
|
|
|
|
2009-04-22 08:16:45 +01:00
|
|
|
src = fetchurl {
|
2011-12-28 21:48:55 +00:00
|
|
|
url = "http://rpm5.org/files/popt/${name}.tar.gz";
|
|
|
|
sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77";
|
|
|
|
};
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
patches = stdenv.lib.optionals stdenv.isCygwin [
|
2014-10-26 14:27:39 +00:00
|
|
|
./1.16-cygwin.patch
|
|
|
|
./1.16-vpath.patch
|
2018-04-25 04:20:18 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false; # fails
|
2014-10-26 14:27:39 +00:00
|
|
|
|
2018-10-25 21:26:53 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Command line option parsing library";
|
2018-10-25 21:26:53 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2009-04-22 08:16:45 +01:00
|
|
|
};
|
|
|
|
}
|