8172cd734c
It's "developer documentation", not "documentation developer" after all.
34 lines
851 B
Nix
34 lines
851 B
Nix
{ stdenv, fetchurl, perl, texinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libtasn1-4.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libtasn1/${name}.tar.gz";
|
|
sha256 = "04y5m29pqmvkfdbppmsdifyx89v8xclxzklpfc7a1fkr9p4jz07s";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
outputBin = "dev";
|
|
|
|
buildInputs = [ perl texinfo ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = http://www.gnu.org/software/libtasn1/;
|
|
description = "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 = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ wkennington ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|