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";
|
|
|
|
};
|
|
|
|
|
2014-10-26 07:27:39 -07:00
|
|
|
patches = if stdenv.isCygwin then [
|
|
|
|
./1.16-cygwin.patch
|
|
|
|
./1.16-vpath.patch
|
|
|
|
] else null;
|
|
|
|
|
2011-12-28 13:48:55 -08:00
|
|
|
meta = {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Command line option parsing library";
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-04-22 00:16:45 -07:00
|
|
|
};
|
|
|
|
}
|