aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorquapka2024-08-05 18:22:49 +0200
committerquapka2024-08-05 18:22:49 +0200
commitcf3bfc34b4db9902824568fc4d6fb05bf08a2547 (patch)
treeeff097b683ceb5d4f7f1c93faa51f70bd76bd7d6
parentc405d82be596b7b673d96843c1fac9238ce82a9f (diff)
downloadECTester-cf3bfc34b4db9902824568fc4d6fb05bf08a2547.tar.gz
ECTester-cf3bfc34b4db9902824568fc4d6fb05bf08a2547.tar.zst
ECTester-cf3bfc34b4db9902824568fc4d6fb05bf08a2547.zip
-rw-r--r--flake.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index e86e660..114837c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -209,9 +209,10 @@
buildECTesterStandalone = {
tomcrypt ? { version = null; hash = null; },
tommath ? { version = null; hash = null; },
- openssl ? { version = null; hash = null; },
botan ? { version = null; source_extension = null; hash = null; },
cryptopp ? { version = null; hash = null; },
+ openssl ? { version = null; hash = null; },
+ boringssl ? { version = null; hash = null; },
}: (
let
tomcryptShim = tomcryptShimBuilder {
@@ -275,9 +276,10 @@
packages = rec {
default = openssl.v331;
tomcrypt = pkgs.callPackage ./nix/tomcrypt_pkg_versions.nix { inherit buildECTesterStandalone; };
- openssl = pkgs.callPackage ./nix/openssl_pkg_versions.nix { inherit buildECTesterStandalone; };
botan = pkgs.callPackage ./nix/botan_pkg_versions.nix { inherit buildECTesterStandalone; };
cryptopp = pkgs.callPackage ./nix/cryptopp_pkg_versions.nix { inherit buildECTesterStandalone; };
+ openssl = pkgs.callPackage ./nix/openssl_pkg_versions.nix { inherit buildECTesterStandalone; };
+ boringssl = pkgs.callPackage ./nix/boringssl_pkg_versions.nix { inherit buildECTesterStandalone; };
};
devShells.default = with pkgs; mkShell rec {
nativeBuildInputs = [