diff options
| author | Robert Scott <code@humanleg.org.uk> | 2023-02-11 20:07:29 +0000 |
|---|---|---|
| committer | Robert Scott <code@humanleg.org.uk> | 2023-02-11 20:07:29 +0000 |
| commit | dba170886f8d20cb05632e842a7e84f721ca7a8e (patch) | |
| tree | b541e502e462ee5f02f1d4cd688f1386c569c128 | |
| parent | Merge pull request #215736 from ambroisie/add-nvim-osc52 (diff) | |
| download | nixpkgs-dba170886f8d20cb05632e842a7e84f721ca7a8e.tar.gz | |
gnutls: add some key reverse dependencies to passthru.tests
| -rw-r--r-- | pkgs/development/libraries/gnutls/default.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gnutls/default.nix b/pkgs/development/libraries/gnutls/default.nix index f1ec87ba008d..4ab7360f1f07 100644 --- a/pkgs/development/libraries/gnutls/default.nix +++ b/pkgs/development/libraries/gnutls/default.nix @@ -7,6 +7,19 @@ , withP11-kit ? !stdenv.hostPlatform.isStatic, p11-kit , withSecurity ? true, Security # darwin Security.framework # certificate compression - only zlib now, more possible: zstd, brotli + +# for passthru.tests +, curlWithGnuTls +, emacs +, ffmpeg +, haskellPackages +, knot-resolver +, ngtcp2-gnutls +, ocamlPackages +, python3Packages +, qemu +, rsyslog +, samba }: assert guileBindings -> guile != null; @@ -105,6 +118,14 @@ stdenv.mkDerivation rec { --replace "-lunistring" "" ''; + passthru.tests = { + inherit ngtcp2-gnutls curlWithGnuTls ffmpeg emacs qemu knot-resolver; + inherit (ocamlPackages) ocamlnet; + haskell-gnutls = haskellPackages.gnutls; + python3-gnutls = python3Packages.python3-gnutls; + rsyslog = rsyslog.override { withGnutls = true; }; + }; + meta = with lib; { description = "The GNU Transport Layer Security Library"; |
