diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-04-01 12:40:49 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-04-01 12:40:49 +0200 |
commit | fdfe737867920ed0ec29ba8ffb7d19854d8658bb (patch) | |
tree | 0cc0948f7a9cebd9649b9adff438cae3b10aa1cd /tests/ca | |
parent | c9a29d0d92529338026190374d0e7e886f486e47 (diff) |
Fix handling of outputHash when outputHashAlgo is not specified
https://hydra.nixos.org/build/171351131
Diffstat (limited to 'tests/ca')
-rw-r--r-- | tests/ca/content-addressed.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ca/content-addressed.nix b/tests/ca/content-addressed.nix index d328fc92c..1be3eeb6e 100644 --- a/tests/ca/content-addressed.nix +++ b/tests/ca/content-addressed.nix @@ -64,8 +64,7 @@ rec { dependentFixedOutput = mkDerivation { name = "dependent-fixed-output"; outputHashMode = "recursive"; - outputHashAlgo = "sha256"; - outputHash = "sha256-QvtAMbUl/uvi+LCObmqOhvNOapHdA2raiI4xG5zI5pA="; + outputHash = "sha512-7aJcmSuEuYP5tGKcmGY8bRr/lrCjJlOxP2mIUjO/vMQeg6gx/65IbzRWES8EKiPDOs9z+wF30lEfcwxM/cT4pw=="; buildCommand = '' cat ${dependentCA}/dep echo foo > $out |