lol
1{ stdenv, fetchurl, perl, texinfo }:
2
3stdenv.mkDerivation rec {
4 name = "libtasn1-4.8";
5
6 src = fetchurl {
7 url = "mirror://gnu/libtasn1/${name}.tar.gz";
8 sha256 = "04y5m29pqmvkfdbppmsdifyx89v8xclxzklpfc7a1fkr9p4jz07s";
9 };
10
11 outputs = [ "out" "dev" "docdev" ];
12 outputBin = "dev";
13
14 buildInputs = [ perl texinfo ];
15
16 doCheck = true;
17
18 meta = {
19 homepage = http://www.gnu.org/software/libtasn1/;
20 description = "An ASN.1 library";
21
22 longDescription =
23 '' Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some
24 other packages. The goal of this implementation is to be highly
25 portable, and only require an ANSI C89 platform.
26 '';
27
28 license = stdenv.lib.licenses.lgpl2Plus;
29
30 maintainers = with stdenv.lib.maintainers; [ wkennington ];
31 platforms = stdenv.lib.platforms.all;
32 };
33}