Skip to content

Commit

Permalink
libtasn1: fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
LnL7 committed Jan 11, 2017
1 parent 5fa5ab0 commit b8b1892
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions pkgs/development/libraries/libtasn1/default.nix
Expand Up @@ -11,23 +11,24 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "devdoc" ];
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 ];

doCheck = true;

meta = {
meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/libtasn1/;
description = "An ASN.1 library";

longDescription =
'' Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some
other packages. The goal of this implementation is to be highly
portable, and only require an ANSI C89 platform.
'';

license = stdenv.lib.licenses.lgpl2Plus;

maintainers = with stdenv.lib.maintainers; [ wkennington ];
platforms = stdenv.lib.platforms.all;
longDescription = ''
Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some
other packages. The goal of this implementation is to be highly
portable, and only require an ANSI C89 platform.
'';
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}

0 comments on commit b8b1892

Please sign in to comment.