about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2019-09-29 16:32:56 +0200
committerMatthew Bauer <mjbauer95@gmail.com>2020-06-08 17:47:44 -0500
commitc86af902f443a7f0813467e734b0dcec92e9c2f9 (patch)
tree822b97c58a6e1e30e3b37901a9a1db9717279af4 /pkgs/top-level
parent2f79f25963e77677c6d29614a7022dc1d4fb39db (diff)
downloadnixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.tar
nixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.tar.gz
nixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.tar.bz2
nixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.tar.lz
nixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.tar.xz
nixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.tar.zst
nixlib-c86af902f443a7f0813467e734b0dcec92e9c2f9.zip
nix: allow static compilation
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/static.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix
index 6f331b20d3fc..cd75209a9b98 100644
--- a/pkgs/top-level/static.nix
+++ b/pkgs/top-level/static.nix
@@ -159,7 +159,7 @@ in {
     enableShared = false;
   };
   mkl = super.mkl.override { enableStatic = true; };
-  nix = super.nix.override { withAWS = false; };
+  nix = super.nix.override { enableStatic = true; };
   openssl = (super.openssl_1_1.override { static = true; }).overrideAttrs (o: {
     # OpenSSL doesn't like the `--enable-static` / `--disable-shared` flags.
     configureFlags = (removeUnknownConfigureFlags o.configureFlags);