diff options
| author | quapka | 2024-07-26 10:43:24 +0200 |
|---|---|---|
| committer | quapka | 2024-07-26 10:43:24 +0200 |
| commit | 888bf25d03940d87960df8fc1be1076afbc723aa (patch) | |
| tree | 8c8d5aa065ed0ef54e2b9e358f4d38c68f6c9874 | |
| parent | d75a844eee9a248d3abeb3ab80821fd4e3a02788 (diff) | |
| download | ECTester-888bf25d03940d87960df8fc1be1076afbc723aa.tar.gz ECTester-888bf25d03940d87960df8fc1be1076afbc723aa.tar.zst ECTester-888bf25d03940d87960df8fc1be1076afbc723aa.zip | |
Keep consistent shims build ordering
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -115,7 +115,6 @@ ]; }); - libresslShim = import ./nix/libresslshim.nix { pkgs = pkgs; libressl = libressl; }; # Current list of targets: tomcrypt botan cryptopp openssl boringssl gcrypt mbedtls ippcp nettle libressl tomcryptShim = import ./nix/tomcryptshim.nix { inherit pkgs libtomcrypt libtommath; }; botanShim = import ./nix/botanshim.nix { inherit pkgs; }; @@ -125,6 +124,7 @@ gcryptShim = import ./nix/gcryptshim.nix { inherit pkgs libgcrypt libgpg-error; }; mbedtlsShim = import ./nix/mbedtlsshim.nix { pkgs = pkgs; }; ippcpShim = import ./nix/ippcpshim.nix { pkgs = pkgs; ipp-crypto = customPkgs.ipp-crypto; }; + libresslShim = import ./nix/libresslshim.nix { inherit pkgs libressl; }; overlays = []; pkgs = import nixpkgs { @@ -157,9 +157,9 @@ cp ${opensslShim.out}/lib/openssl_provider.so ${jniLibsPath} cp ${boringsslShim.out}/lib/boringssl_provider.so ${jniLibsPath} cp ${gcryptShim.out}/lib/gcrypt_provider.so ${jniLibsPath} - cp ${libresslShim.out}/lib/libressl_provider.so ${jniLibsPath} cp ${mbedtlsShim.out}/lib/mbedtls_provider.so ${jniLibsPath} cp ${ippcpShim.out}/lib/ippcp_provider.so ${jniLibsPath} + cp ${libresslShim.out}/lib/libressl_provider.so ${jniLibsPath} cp ${wolfcryptjni}/lib/* ${jniLibsPath} cp ${commonLibs}/lib/* ${jniLibsPath} ''; |
