diff options
| author | quapka | 2024-07-25 10:20:01 +0200 |
|---|---|---|
| committer | quapka | 2024-07-25 10:20:01 +0200 |
| commit | f3ce8a2f3d2b4a08ccf7c06f063244d372ce9160 (patch) | |
| tree | 9319a7f457685c6ded634b139ae940e2761b1dae /flake.nix | |
| parent | c7300fb4a772b0d2364b0fff20f9676fdb79ac9b (diff) | |
| download | ECTester-f3ce8a2f3d2b4a08ccf7c06f063244d372ce9160.tar.gz ECTester-f3ce8a2f3d2b4a08ccf7c06f063244d372ce9160.tar.zst ECTester-f3ce8a2f3d2b4a08ccf7c06f063244d372ce9160.zip | |
Link Nettle statically
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -66,6 +66,9 @@ libtomcrypt = pkgs.libtomcrypt.overrideAttrs (final: prev: { makefile = "makefile.unix"; }); + nettle = pkgs.nettle.overrideAttrs (final: prev: { + configureFlags = ( prev.configureFlags or [] ) ++ [ "--enable-static" ]; + }); cryptopp = pkgs.cryptopp.override { enableStatic = true; }; libressl = pkgs.libressl.overrideAttrs (_old: rec { # devLibPath = pkgs.lib.makeLibraryPath [ pkgs.libressl.dev ]; |
