nixpkgs/pkgs/development/libraries/libtasn1/default.nix
Ludovic Courtès c4756a5bb3 GNU libtasn1 2.9.
svn path=/nixpkgs/branches/stdenv-updates/; revision=25079
2010-12-12 20:19:23 +00:00

29 lines
722 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libtasn1-2.9";
src = fetchurl {
url = "mirror://gnu/libtasn1/${name}.tar.gz";
sha256 = "1i0jnk810hg88jh3bhq63yn0n2cfmpmhrdm1ypv8rc68z9anii7s";
};
doCheck = true;
meta = {
homepage = http://www.gnu.org/software/libtasn1/;
description = "GNU Libtasn1, 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 = "LGPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.all;
};
}