From 788f8b1acabd5e0a521d1c1d5cc201d862460bcb Mon Sep 17 00:00:00 2001 From: nikstur Date: Sun, 18 May 2025 15:33:46 +0200 Subject: [PATCH] botan3: include static build in passthru.tests This way its automatically built by ofborg in a PR. --- pkgs/development/libraries/botan/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/botan/default.nix b/pkgs/development/libraries/botan/default.nix index 3a380d01e3b1..43d5096558c6 100644 --- a/pkgs/development/libraries/botan/default.nix +++ b/pkgs/development/libraries/botan/default.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchurl, + pkgsStatic, python3, docutils, bzip2, @@ -133,6 +134,10 @@ let doCheck = true; + passthru.tests = lib.optionalAttrs (lib.versionAtLeast version "3") { + static = pkgsStatic.botan3; + }; + meta = with lib; { description = "Cryptographic algorithms library"; homepage = "https://botan.randombit.net";