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

31 lines
780 B
Nix
Raw Normal View History

2014-03-29 17:36:38 +00:00
{ stdenv, fetchurl, perl, texinfo }:
stdenv.mkDerivation rec {
2015-04-29 23:00:26 +00:00
name = "libtasn1-4.5";
src = fetchurl {
url = "mirror://gnu/libtasn1/${name}.tar.gz";
2015-04-29 23:00:26 +00:00
sha256 = "0p8c5s1gm3z3nn4s9qc6gs18grbk45mx44byqw2l2qzynjqrsd7a";
};
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-04-29 23:00:26 +00:00
maintainers = with maintainers; [ wkennington ];
platforms = stdenv.lib.platforms.all;
};
}