diff options
author | Jade Lovelace <lix@jade.fyi> | 2024-06-27 22:43:02 -0700 |
---|---|---|
committer | Jade Lovelace <lix@jade.fyi> | 2024-06-27 22:44:16 -0700 |
commit | d92712673ba8d169606a1db83224969952f8ac07 (patch) | |
tree | ded2fa16bff9a488fcbd9673ee8b7ff831ececd8 /tests/functional/fod-failing.nix | |
parent | 5dc85e8b72d1ba433f69200537146275ff1c4a03 (diff) |
store: guess the URL of failing fixed-output derivations
This is a shameless layering violation in favour of UX. It falls back
trivially to "unknown", so it's purely a UX feature.
Diagnostic sample:
```
error: hash mismatch in fixed-output derivation '/nix/store/sjfw324j4533lwnpmr5z4icpb85r63ai-x1.drv':
likely URL: https://meow.puppy.forge/puppy.tar.gz
specified: sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
got: sha256-a1Qvp3FOOkWpL9kFHgugU1ok5UtRPSu+NwCZKbbaEro=
```
Change-Id: I873eedcf7984ab23f57a6754be00232b5cb5b02c
Diffstat (limited to 'tests/functional/fod-failing.nix')
-rw-r--r-- | tests/functional/fod-failing.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/functional/fod-failing.nix b/tests/functional/fod-failing.nix index 37c04fe12..b63fbd900 100644 --- a/tests/functional/fod-failing.nix +++ b/tests/functional/fod-failing.nix @@ -6,6 +6,7 @@ rec { '' echo $name > $out ''; + url = "https://meow.puppy.forge/puppy.tar.gz"; outputHashMode = "recursive"; outputHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; }; @@ -15,6 +16,7 @@ rec { '' echo $name > $out ''; + urls = "https://kitty.forge/cat.tar.gz"; outputHashMode = "recursive"; outputHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; }; |