mirror of
https://github.com/NixOS/nix.git
synced 2025-11-27 20:51:00 +01:00
* Canonicalise paths so that Fix produces identical Nix
expressions for identical inputs.
This commit is contained in:
parent
cab3f4977a
commit
9a99dc736d
3 changed files with 4 additions and 3 deletions
|
|
@ -163,7 +163,7 @@ Hash writeTerm(ATerm t)
|
|||
if (!ATwriteToNamedTextFile(t, path.c_str()))
|
||||
throw Error(format("cannot write aterm %1%") % path);
|
||||
Hash hash = hashPath(path);
|
||||
string path2 = nixStore + "/" + (string) hash + ".nix";
|
||||
string path2 = canonPath(nixStore + "/" + (string) hash + ".nix");
|
||||
if (rename(path.c_str(), path2.c_str()) == -1)
|
||||
throw SysError(format("renaming %1% to %2%") % path % path2);
|
||||
registerPath(path2, hash);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue