ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, perl
|
|
, texinfo
|
|
|
|
# for passthru.tests
|
|
, gnutls
|
|
, samba
|
|
, qemu
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libtasn1";
|
|
version = "4.19.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libtasn1/libtasn1-${version}.tar.gz";
|
|
sha256 = "sha256-FhPwrBz0hNbsDOO4wG1WJjzHJC8cI7MNgtI940WmP3o=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
outputBin = "dev";
|
|
|
|
nativeBuildInputs = [ texinfo perl ];
|
|
|
|
doCheck = true;
|
|
preCheck = if stdenv.hostPlatform.isDarwin then
|
|
"export DYLD_LIBRARY_PATH=`pwd`/lib/.libs"
|
|
else
|
|
null;
|
|
|
|
passthru.tests = {
|
|
inherit gnutls samba qemu;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.gnu.org/software/libtasn1/";
|
|
description = "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 = licenses.lgpl2Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|