mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
getFlake(): Use impureIsAllowed
This fixes 'nix build nixpkgs:hello' without --impure.
This commit is contained in:
parent
ba66455636
commit
ed9d725392
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ static FlakeSourceInfo fetchFlake(EvalState & state, const FlakeRef flakeRef, bo
|
||||||
// This will return the flake which corresponds to a given FlakeRef. The lookupFlake is done within this function.
|
// This will return the flake which corresponds to a given FlakeRef. The lookupFlake is done within this function.
|
||||||
Flake getFlake(EvalState & state, const FlakeRef & flakeRef, bool impureIsAllowed = false)
|
Flake getFlake(EvalState & state, const FlakeRef & flakeRef, bool impureIsAllowed = false)
|
||||||
{
|
{
|
||||||
FlakeSourceInfo sourceInfo = fetchFlake(state, flakeRef);
|
FlakeSourceInfo sourceInfo = fetchFlake(state, flakeRef, impureIsAllowed);
|
||||||
debug("got flake source '%s' with revision %s",
|
debug("got flake source '%s' with revision %s",
|
||||||
sourceInfo.storePath, sourceInfo.rev.value_or(Hash(htSHA1)).to_string(Base16, false));
|
sourceInfo.storePath, sourceInfo.rev.value_or(Hash(htSHA1)).to_string(Base16, false));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue