diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-23 15:11:10 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-23 15:11:10 +0000 |
commit | b0b59fd05a1b003536f498c906350f5e1052d218 (patch) | |
tree | 86acc2375589f408e0c415b178cf49fc2a9755dc /src/libstore/derivations.hh | |
parent | 3a7b330b64c6ea77e18a0a96aad7fb14947382d9 (diff) | |
parent | 35e6288be1a2384a29caccd64d88a6b623e6c033 (diff) |
Merge remote-tracking branch 'obsidian/write-derivation-borrow' into HEAD
Diffstat (limited to 'src/libstore/derivations.hh')
-rw-r--r-- | src/libstore/derivations.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh index 76f983561..b09480e1e 100644 --- a/src/libstore/derivations.hh +++ b/src/libstore/derivations.hh @@ -136,7 +136,7 @@ class Store; enum RepairFlag : bool { NoRepair = false, Repair = true }; /* Write a derivation to the Nix store, and return its path. */ -StorePath writeDerivation(ref<Store> store, +StorePath writeDerivation(Store & store, const Derivation & drv, RepairFlag repair = NoRepair); /* Read a derivation from a file. */ |