Robert made these improvements on the PR that cherry-picked
e55cd3beea /
https://gerrit.lix.systems/c/lix/+/2057
from Lix into CppNix:
https://github.com/NixOS/nix/pull/11921
Push log source description out of libutil and report build hook @nix warning correctly
(cherry picked from commit 03d4bfd852dce9a050f984e887c887a43581796c)
test: Move unusual-logging to run only in logging test case
(cherry picked from commit 1421420e862434321c46511a3152016e443dd479)
Remove redundant warning: prefix from structured build log warning
(cherry picked from commit f3c722cab24f7a0de8c3573d25e91749f4f16234)
Change-Id: I7da99046f2a41b3c58e62351119bc89bcc25a703
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ hashInvalidator ? "" }:
|
|
with import ./config.nix;
|
|
|
|
let
|
|
input0 = mkDerivation {
|
|
name = "dependencies-input-0";
|
|
buildCommand = "mkdir $out; echo foo > $out/bar";
|
|
};
|
|
|
|
input1 = mkDerivation {
|
|
name = "dependencies-input-1";
|
|
buildCommand = "mkdir $out; echo FOO > $out/foo";
|
|
};
|
|
|
|
input2 = mkDerivation {
|
|
name = "dependencies-input-2";
|
|
buildCommand = ''
|
|
mkdir $out
|
|
echo BAR > $out/bar
|
|
echo ${input0} > $out/input0
|
|
'';
|
|
};
|
|
|
|
fod_input = mkDerivation {
|
|
name = "fod-input";
|
|
buildCommand = ''
|
|
echo ${hashInvalidator}
|
|
echo FOD > $out
|
|
'';
|
|
outputHashMode = "flat";
|
|
outputHashAlgo = "sha256";
|
|
outputHash = "1dq9p0hnm1y75q2x40fws5887bq1r840hzdxak0a9djbwvx0b16d";
|
|
};
|
|
|
|
in
|
|
mkDerivation {
|
|
name = "dependencies-top";
|
|
builder = ./dependencies.builder0.sh + "/FOOBAR/../.";
|
|
input1 = input1 + "/.";
|
|
input2 = "${input2}/.";
|
|
input1_drv = input1;
|
|
input2_drv = input2;
|
|
input0_drv = input0;
|
|
fod_input_drv = fod_input;
|
|
meta.description = "Random test package";
|
|
}
|