2014-03-29 10:36:38 -07:00
|
|
|
{ stdenv, fetchurl, perl, texinfo }:
|
2010-01-20 03:09:04 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-23 14:20:39 -07:00
|
|
|
name = "libtasn1-4.8";
|
2008-05-20 07:25:09 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-01-20 03:09:04 -08:00
|
|
|
url = "mirror://gnu/libtasn1/${name}.tar.gz";
|
2016-06-23 14:20:39 -07:00
|
|
|
sha256 = "04y5m29pqmvkfdbppmsdifyx89v8xclxzklpfc7a1fkr9p4jz07s";
|
2008-05-20 07:25:09 -07:00
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2015-10-07 13:24:10 -07:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2014-03-29 10:36:38 -07:00
|
|
|
buildInputs = [ perl texinfo ];
|
|
|
|
|
2010-04-13 01:56:04 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2008-05-20 07:25:09 -07:00
|
|
|
meta = {
|
2010-01-20 03:09:04 -08:00
|
|
|
homepage = http://www.gnu.org/software/libtasn1/;
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "An ASN.1 library";
|
2010-01-20 03:09:04 -08: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-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-01-20 03:09:04 -08:00
|
|
|
|
2015-05-01 05:22:03 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ wkennington ];
|
2010-01-20 03:09:04 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-05-20 07:25:09 -07:00
|
|
|
};
|
|
|
|
}
|