From cd0bccbbe036450829a0565d6d921d728ad9985d Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 8 May 2023 12:02:13 +0000 Subject: [PATCH] stdenv: fix inputDerivation with allowed refs Same motivation as for the disallowed references. --- pkgs/stdenv/generic/make-derivation.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/stdenv/generic/make-derivation.nix b/pkgs/stdenv/generic/make-derivation.nix index 0515494ec982..98bd01d4e3eb 100644 --- a/pkgs/stdenv/generic/make-derivation.nix +++ b/pkgs/stdenv/generic/make-derivation.nix @@ -550,6 +550,8 @@ lib.extendDerivation # inputDerivation produces the inputs; not the outputs, so any # restrictions on what used to be the outputs don't serve a purpose # anymore. + allowedReferences = null; + allowedRequisites = null; disallowedReferences = [ ]; disallowedRequisites = [ ]; });