aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorquapka2024-07-26 10:43:24 +0200
committerquapka2024-07-26 10:43:24 +0200
commit888bf25d03940d87960df8fc1be1076afbc723aa (patch)
tree8c8d5aa065ed0ef54e2b9e358f4d38c68f6c9874
parentd75a844eee9a248d3abeb3ab80821fd4e3a02788 (diff)
downloadECTester-888bf25d03940d87960df8fc1be1076afbc723aa.tar.gz
ECTester-888bf25d03940d87960df8fc1be1076afbc723aa.tar.zst
ECTester-888bf25d03940d87960df8fc1be1076afbc723aa.zip
Keep consistent shims build ordering
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 2c821ab..efcdac1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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}
'';