Support flake inputs with type path
This commit is contained in:
parent
c5c3c5b56b
commit
f10b647d90
|
@ -36,6 +36,10 @@ let
|
||||||
lastModifiedDate = formatSecondsSinceEpoch info.lastModified;
|
lastModifiedDate = formatSecondsSinceEpoch info.lastModified;
|
||||||
narHash = info.narHash;
|
narHash = info.narHash;
|
||||||
}
|
}
|
||||||
|
else if info.type == "path" then
|
||||||
|
{ outPath = builtins.path { path = info.path; };
|
||||||
|
narHash = info.narHash;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
# FIXME: add Mercurial, tarball inputs.
|
# FIXME: add Mercurial, tarball inputs.
|
||||||
throw "flake input has unsupported input type '${info.type}'";
|
throw "flake input has unsupported input type '${info.type}'";
|
||||||
|
|
Loading…
Reference in a new issue