diff options
| author | quapka | 2024-08-05 18:22:49 +0200 |
|---|---|---|
| committer | quapka | 2024-08-05 18:22:49 +0200 |
| commit | cf3bfc34b4db9902824568fc4d6fb05bf08a2547 (patch) | |
| tree | eff097b683ceb5d4f7f1c93faa51f70bd76bd7d6 | |
| parent | c405d82be596b7b673d96843c1fac9238ce82a9f (diff) | |
| download | ECTester-cf3bfc34b4db9902824568fc4d6fb05bf08a2547.tar.gz ECTester-cf3bfc34b4db9902824568fc4d6fb05bf08a2547.tar.zst ECTester-cf3bfc34b4db9902824568fc4d6fb05bf08a2547.zip | |
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 = [ |
