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