diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-06-01 17:13:11 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-06-01 17:13:11 -0400 |
commit | 0cb67ecbd318a455fa4b459e29fadd0848238fca (patch) | |
tree | 77818a525fe0cdc04621ca2829d459be555d9742 /src/libstore/derivations.hh | |
parent | f4b89e11a4d9d6e50720fbe0db9041b6fe442cd5 (diff) | |
parent | bcde5456cc3295061a0726881c3e441444dd6680 (diff) |
Merge branch 'derivation-header-include-order' of github.com:Ericson2314/nix into validPathInfo-ca-proper-datatype
Diffstat (limited to 'src/libstore/derivations.hh')
-rw-r--r-- | src/libstore/derivations.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh index 46de3960e..5fc3b37da 100644 --- a/src/libstore/derivations.hh +++ b/src/libstore/derivations.hh @@ -1,8 +1,8 @@ #pragma once +#include "path.hh" #include "types.hh" #include "hash.hh" -#include "store-api.hh" #include <map> @@ -91,6 +91,7 @@ struct Derivation : BasicDerivation 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, |