cygwin: popt patches

This commit is contained in:
U-user-PC\\user
2015-05-28 10:53:36 +02:00
committed by Rok Garbas
parent 7f7aca4e16
commit 6c7899b1f6
3 changed files with 51 additions and 1 deletions
+6 -1
View File
@@ -2,12 +2,17 @@
stdenv.mkDerivation rec {
name = "popt-1.16";
src = fetchurl {
url = "http://rpm5.org/files/popt/${name}.tar.gz";
sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77";
};
patches = if stdenv.isCygwin then [
./1.16-cygwin.patch
./1.16-vpath.patch
] else null;
meta = {
description = "command line option parsing library";
};