libtasn1: fix darwin build
This commit is contained in:
parent
5fa5ab0eed
commit
b8b1892546
@ -11,23 +11,24 @@ stdenv.mkDerivation rec {
|
|||||||
outputs = [ "out" "dev" "devdoc" ];
|
outputs = [ "out" "dev" "devdoc" ];
|
||||||
outputBin = "dev";
|
outputBin = "dev";
|
||||||
|
|
||||||
|
# Warning causes build to fail on darwin since 4.9,
|
||||||
|
# check if this can be removed in the next release.
|
||||||
|
CFLAGS = "-Wno-sign-compare";
|
||||||
|
|
||||||
buildInputs = [ perl texinfo ];
|
buildInputs = [ perl texinfo ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.gnu.org/software/libtasn1/;
|
homepage = http://www.gnu.org/software/libtasn1/;
|
||||||
description = "An ASN.1 library";
|
description = "An ASN.1 library";
|
||||||
|
longDescription = ''
|
||||||
longDescription =
|
Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some
|
||||||
'' Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some
|
other packages. The goal of this implementation is to be highly
|
||||||
other packages. The goal of this implementation is to be highly
|
portable, and only require an ANSI C89 platform.
|
||||||
portable, and only require an ANSI C89 platform.
|
'';
|
||||||
'';
|
license = licenses.lgpl2Plus;
|
||||||
|
maintainers = with maintainers; [ wkennington ];
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
platforms = platforms.all;
|
||||||
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ wkennington ];
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user