aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix84
1 files changed, 0 insertions, 84 deletions
diff --git a/flake.nix b/flake.nix
index 42ba837..a675910 100644
--- a/flake.nix
+++ b/flake.nix
@@ -915,90 +915,6 @@
};
};
- devShells.default =
- with pkgs;
- mkShell rec {
- nativeBuildInputs = [ pkg-config ];
-
- preConfigure = ''
- cp ${boringssl}/lib/lib_boringssl.a standalone/src/main/resources/cz/crcs/ectester/standalone/libs/jni/
- '';
-
- buildInputs = [
- # # gradle2nix
- # libresslShim
- gdb
- ant
- jdk17
- pkg-config
- global-platform-pro
- gradle
- # libraries to test
- (opensslBuilder { })
- libressl
- # glibc
- boringssl
- libtomcrypt
- libtommath
- botan2
- cryptopp
-
- # libraries' dependencies
- cmake
- ninja
- gawk
- automake
- go
- gtest
- libunwind
- autoconf
- libb64
-
- # clang
- libgcrypt
- libgpg-error
- mbedtls
- nasm
- libtool
- perl
-
- wolfssl
- nettle
- # libressl
-
- customPkgs.ipp-crypto
-
- gmp
- libgpg-error
- wget
- libconfig
- ];
-
- LD_LIBRARY_PATH =
- with pkgs;
- pkgs.lib.makeLibraryPath [
- libtommath
- libtomcrypt
- botan2
- cryptopp
- (opensslBuilder { })
- boringssl
- libgcrypt
- libgpg-error
- nettle
- gmp
- libgpg-error
- libconfig
- wolfcryptjni
- ];
-
- BORINGSSL_CFLAGS = "${boringssl.dev.outPath}/include";
- WOLFCRYPT_LIB_PATH = "${wolfcryptjni}/lib";
-
- IPP_CRYPTO_HEADER = "${customPkgs.ipp-crypto.dev}/include";
- IPP_CRYPTO_LIB = "${customPkgs.ipp-crypto}/lib/";
-
- };
}
);
}