GNU Libtasn1 2.4.
svn path=/nixpkgs/trunk/; revision=19566
This commit is contained in:
parent
50a7b78fb4
commit
8e3a1e09c0
@ -1,15 +1,26 @@
|
|||||||
{stdenv, fetchurl}:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "libtasn1-1.5";
|
name = "libtasn1-2.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://gnu/gnutls/libtasn1-1.5.tar.gz;
|
url = "mirror://gnu/libtasn1/${name}.tar.gz";
|
||||||
sha256 = "1p4m9in144ypk6ndqw46sfz0njx6wccp0zlxjvigxry8034zbn6s";
|
sha256 = "03qz9wnx3643wvy10603syx97mi634z6bhdwznzmqcsq6hwg5g69";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://josefsson.org/libtasn1/;
|
homepage = http://www.gnu.org/software/libtasn1/;
|
||||||
description = "An ASN.1 library";
|
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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user