diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-03-15 16:35:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 16:35:41 +0100 |
commit | a5e21aa13cb717ea7624ef802ffb99501d949104 (patch) | |
tree | 3daf6aa9e2876d32c895b505a3d283eadd40972e /src/libstore/build/derivation-goal.hh | |
parent | 306c154632c03fe27e1513f4fb8797dd81536c05 (diff) | |
parent | 703c98c6cb922ff9d8cd8cb2c1104e0d3b15b803 (diff) |
Merge pull request #4618 from NixOS/ca/sign-drvoutputs
Sign the derivation outputs
Diffstat (limited to 'src/libstore/build/derivation-goal.hh')
-rw-r--r-- | src/libstore/build/derivation-goal.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/build/derivation-goal.hh b/src/libstore/build/derivation-goal.hh index c85bcd84f..704b77caf 100644 --- a/src/libstore/build/derivation-goal.hh +++ b/src/libstore/build/derivation-goal.hh @@ -180,6 +180,9 @@ struct DerivationGoal : public Goal /* Open a log file and a pipe to it. */ Path openLogFile(); + /* Sign the newly built realisation if the store allows it */ + virtual void signRealisation(Realisation&) {} + /* Close the log file. */ void closeLogFile(); |