2020-10-12 23:51:23 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
|
|
|
|
# A simple content-addressed derivation.
|
|
|
|
# The derivation can be arbitrarily modified by passing a different `seed`,
|
|
|
|
# but the output will always be the same
|
|
|
|
rec {
|
2023-05-05 15:49:41 +00:00
|
|
|
hello = mkDerivation {
|
|
|
|
name = "hello";
|
2020-10-12 23:51:23 +00:00
|
|
|
buildCommand = ''
|
|
|
|
set -x
|
|
|
|
echo "Building a CA derivation"
|
|
|
|
mkdir -p $out
|
|
|
|
echo "Hello World" > $out/hello
|
|
|
|
'';
|
|
|
|
};
|
2023-05-05 15:49:41 +00:00
|
|
|
producingDrv = mkDerivation {
|
|
|
|
name = "hello.drv";
|
2020-10-12 23:51:23 +00:00
|
|
|
buildCommand = ''
|
|
|
|
echo "Copying the derivation"
|
2023-05-05 15:49:41 +00:00
|
|
|
cp ${builtins.unsafeDiscardOutputDependency hello.drvPath} $out
|
2020-10-12 23:51:23 +00:00
|
|
|
'';
|
|
|
|
__contentAddressed = true;
|
|
|
|
outputHashMode = "text";
|
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
};
|
Create `outputOf` primop.
In the Nix language, given a drv path, we should be able to construct
another string referencing to one of its output. We can do this today
with `(import drvPath).output`, but this only works for derivations we
already have.
With dynamic derivations, however, that doesn't work well because the
`drvPath` isn't yet built: importing it like would need to trigger IFD,
when the whole point of this feature is to do "dynamic build graph"
without IFD!
Instead, what we want to do is create a placeholder value with the right
string context to refer to the output of the as-yet unbuilt derivation.
A new primop in the language, analogous to `builtins.placeholder` can be
used to create one. This will achieve all the right properties. The
placeholder machinery also will match out the `outPath` attribute for CA
derivations works.
In 60b7121d2c6d4322b7c2e8e7acfec7b701b2d3a1 we added that type of
placeholder, and the derived path and string holder changes necessary to
support it. Then in the previous commit we cleaned up the code
(inspiration finally hit me!) to deduplicate the code and expose exactly
what we need. Now, we can wire up the primop trivally!
Part of RFC 92: dynamic derivations (tracking issue #6316)
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
2021-03-10 04:22:56 +00:00
|
|
|
wrapper = mkDerivation {
|
|
|
|
name = "use-dynamic-drv-in-non-dynamic-drv";
|
|
|
|
buildCommand = ''
|
|
|
|
echo "Copying the output of the dynamic derivation"
|
|
|
|
cp -r ${builtins.outputOf producingDrv.outPath "out"} $out
|
|
|
|
'';
|
|
|
|
};
|
2020-10-12 23:51:23 +00:00
|
|
|
}
|