mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 03:47:31 +00:00
Merge pull request #225264 from trofi/nodejs-no-CA
nodejs: explicitly disable __contentAddressed
This commit is contained in:
commit
916d029b63
@ -96,6 +96,14 @@ let
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# Don't allow enabling content addressed conversion as `nodejs`
|
||||
# checksums it's image before conversion happens and image loading
|
||||
# breaks:
|
||||
# $ nix build -f. nodejs --arg config '{ contentAddressedByDefault = true; }'
|
||||
# $ ./result/bin/node
|
||||
# Check failed: VerifyChecksum(blob).
|
||||
__contentAddressed = false;
|
||||
|
||||
passthru.interpreterName = "nodejs";
|
||||
|
||||
passthru.pkgs = callPackage ../../node-packages/default.nix {
|
||||
|
Loading…
Reference in New Issue
Block a user