aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/parsed-derivations.hh
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-06-17 15:39:10 +0200
committerregnat <rg@regnat.ovh>2020-06-17 15:41:17 +0200
commit56d75bf4fcb06da1a577c6e381f4afef57f30243 (patch)
tree10f3c803328c994d19fc0f4e66424edcd900f732 /src/libstore/parsed-derivations.hh
parentccbea8255cf52413938d994a69222fd953b08659 (diff)
Reserve the `__contentAddressed` derivation parameter
Not implementing anything here, just throwing an error if a derivation sets `__contentAddressed = true` without `--experimental-features content-addressed-paths` (and also with it as there's nothing implemented yet)
Diffstat (limited to 'src/libstore/parsed-derivations.hh')
-rw-r--r--src/libstore/parsed-derivations.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/parsed-derivations.hh b/src/libstore/parsed-derivations.hh
index 7621342d7..d24d1eb4f 100644
--- a/src/libstore/parsed-derivations.hh
+++ b/src/libstore/parsed-derivations.hh
@@ -34,6 +34,8 @@ public:
bool willBuildLocally() const;
bool substitutesAllowed() const;
+
+ bool contentAddressed() const;
};
}