nixpkgs/pkgs/development/libraries/libtasn1/default.nix

34 lines
851 B
Nix
Raw Normal View History

2014-03-29 17:36:38 +00:00
{ stdenv, fetchurl, perl, texinfo }:
stdenv.mkDerivation rec {
2017-01-11 05:18:14 +00:00
name = "libtasn1-4.9";
src = fetchurl {
url = "mirror://gnu/libtasn1/${name}.tar.gz";
2017-01-11 05:18:14 +00:00
sha256 = "0869cp6jx7cajgv6cnddsh3vc7bimmdkdjn80y1jpb4iss7plvsg";
};
outputs = [ "out" "dev" "devdoc" ];
outputBin = "dev";
2014-03-29 17:36:38 +00:00
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;
2015-05-01 12:22:03 +00:00
maintainers = with stdenv.lib.maintainers; [ wkennington ];
platforms = stdenv.lib.platforms.all;
};
}