nixpkgs/pkgs/development/libraries/libtasn1/default.nix
Ludovic Courtès 8e3a1e09c0 GNU Libtasn1 2.4.
svn path=/nixpkgs/trunk/; revision=19566
2010-01-20 11:09:04 +00:00

27 lines
703 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libtasn1-2.4";
src = fetchurl {
url = "mirror://gnu/libtasn1/${name}.tar.gz";
sha256 = "03qz9wnx3643wvy10603syx97mi634z6bhdwznzmqcsq6hwg5g69";
};
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;
};
}