aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-04 16:04:35 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-04 16:04:35 +0000
commit075d399e3f02f607fc60dd99eef96bd830f69a2c (patch)
tree60e7ea1945dd8416a94740039c66f2683f720b9a /tests
parentaad4abcc9c27d5c1a2349e40f51f076387e0f844 (diff)
parent5aed6f9b25b8547feb67bbbfaa263d013b82fb52 (diff)
Merge remote-tracking branch 'obsidian/single-ca-drv-build' into ca-floating-upstream
Diffstat (limited to 'tests')
-rw-r--r--tests/content-addressed.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/content-addressed.nix b/tests/content-addressed.nix
index 5ebc779c1..3dcf916c3 100644
--- a/tests/content-addressed.nix
+++ b/tests/content-addressed.nix
@@ -13,17 +13,17 @@ rec {
mkdir -p $out
echo "Hello World" > $out/hello
'';
- __contentAddressed = true;
- outputHashMode = "recursive";
- outputHashAlgo = "sha256";
};
rootCA = mkDerivation {
name = "dependent";
+ outputs = [ "out" "dev" ];
buildCommand = ''
echo "building a CA derivation"
echo "The seed is ${toString seed}"
mkdir -p $out
echo ${rootLegacy}/hello > $out/dep
+ # test symlink at root
+ ln -s $out $dev
'';
__contentAddressed = true;
outputHashMode = "recursive";