2014-03-29 17:36:38 +00:00
|
|
|
{ stdenv, fetchurl, perl, texinfo }:
|
2010-01-20 11:09:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-06-07 11:48:00 +01:00
|
|
|
name = "libtasn1-3.6";
|
2008-05-20 15:25:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-01-20 11:09:04 +00:00
|
|
|
url = "mirror://gnu/libtasn1/${name}.tar.gz";
|
2014-06-07 11:48:00 +01:00
|
|
|
sha256 = "0c547qa1vfk1x2jzgjhf65izf4sfi86c6g46q7779g4aldk4gqqr";
|
2008-05-20 15:25:09 +01:00
|
|
|
};
|
|
|
|
|
2014-03-29 17:36:38 +00:00
|
|
|
buildInputs = [ perl texinfo ];
|
|
|
|
|
2010-04-13 09:56:04 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2008-05-20 15:25:09 +01:00
|
|
|
meta = {
|
2010-01-20 11:09:04 +00:00
|
|
|
homepage = http://www.gnu.org/software/libtasn1/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "An ASN.1 library";
|
2010-01-20 11:09:04 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-01-20 11:09:04 +00:00
|
|
|
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2010-01-20 11:09:04 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-05-20 15:25:09 +01:00
|
|
|
};
|
|
|
|
}
|