We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe62c52 commit 5e0f91bCopy full SHA for 5e0f91b
rules_haskell_tests/tests/run-start-script.sh
@@ -36,7 +36,9 @@ function have() {
36
37
if have nix; then
38
NIXPKGS_REVISION=$( getattr_value "rev" )
39
- NIXPKGS_HASH=$( nix hash to-sri "$(getattr_value "sha256")" )
+ # N.B. the sha256 hash attribute given to `builtins.fetchTarball` is computed after unpacking
40
+ # the archive, it is not the hash of the downloaded artifact
41
+ #NIXPKGS_HASH=$( nix hash to-sri "$(getattr_value "sha256")" )
42
fi
43
44
export NIXPKGS_REVISION NIXPKGS_HASH
0 commit comments