about summary refs log tree commit diff
path: root/pkgs/stdenv/darwin
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-04-27 23:21:32 +0300
committerArtturin <Artturin@artturin.com>2022-04-27 23:21:32 +0300
commit33415135b0d1269cd7d62293e6b3129ecce01c90 (patch)
treeca90fde446ae590b842ec3b140d120c6af2d58e3 /pkgs/stdenv/darwin
parentd76021402d59e49c88c7281343603cef71cba2f0 (diff)
downloadnixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.tar
nixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.tar.gz
nixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.tar.bz2
nixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.tar.lz
nixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.tar.xz
nixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.tar.zst
nixlib-33415135b0d1269cd7d62293e6b3129ecce01c90.zip
config.contentAddressedByDefault: init option
Diffstat (limited to 'pkgs/stdenv/darwin')
-rw-r--r--pkgs/stdenv/darwin/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix
index a6f927c287da..6fbd78c422da 100644
--- a/pkgs/stdenv/darwin/default.nix
+++ b/pkgs/stdenv/darwin/default.nix
@@ -75,7 +75,7 @@ rec {
     inherit (bootstrapFiles) mkdir bzip2 cpio tarball;
 
     __impureHostDeps = commonImpureHostDeps;
-  } // lib.optionalAttrs (config.contentAddressedByDefault or false) {
+  } // lib.optionalAttrs config.contentAddressedByDefault {
     __contentAddressed = true;
     outputHashAlgo = "sha256";
     outputHashMode = "recursive";