Skip to content

Conversation

@hamishmack
Copy link
Collaborator

This should fixes a source of errors that look like this:

curl: (37) Couldn't open file /nix/store/7g8b1vz8nlai5zkjzfps25jl7fvdjk3s-source/package/contra-tracer-0.1.0.2.tar.gz

Reproducing this issue turned out to be difficult because if the sha256 is in the nix cache there is no error. To reproduce the issue:

  • Remove the addContext call.
  • Build a project with repository in cabal.project with an inputMap.
  • Force the src derivation to rebuild.

We can force the src derivation to rebuild by giving it invalid sha256 (ignore the hash mismatch errors, if it has a hash then the download worked):

# sha256 = p.pkg-src-sha256;
sha256 = __substring 0 (__stringLength p.pkg-src-sha256 - 6) p.pkg-src-sha256 + "000000";

This should fixes a source of errors that look like this:

```
curl: (37) Couldn't open file /nix/store/7g8b1vz8nlai5zkjzfps25jl7fvdjk3s-source/package/contra-tracer-0.1.0.2.tar.gz
```

Reproducing this issue turned out to be difficult because if the `sha256` is in the nix cache there is no error.  To reproduce the issue:

* Remove the `addContext` call.
* Build a project with `repository` in `cabal.project` with an `inputMap`.
* Force the `src` derivation to rebuild.

We can force the src derivation to rebuild by giving it invalid `sha256` (ignore the hash mismatch errors, if it has a hash then the download worked):

```
# sha256 = p.pkg-src-sha256;
sha256 = __substring 0 (__stringLength p.pkg-src-sha256 - 6) p.pkg-src-sha256 + "000000";
```
Copy link
Collaborator

@angerman angerman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a comment.

@hamishmack hamishmack merged commit 82d4d20 into master Oct 16, 2024
837 checks passed
pranaysashank pushed a commit to kronor-io/haskell.nix that referenced this pull request Jan 18, 2025
* Add context back to repo url strings

This should fixes a source of errors that look like this:

```
curl: (37) Couldn't open file /nix/store/7g8b1vz8nlai5zkjzfps25jl7fvdjk3s-source/package/contra-tracer-0.1.0.2.tar.gz
```

Reproducing this issue turned out to be difficult because if the `sha256` is in the nix cache there is no error.  To reproduce the issue:

* Remove the `addContext` call.
* Build a project with `repository` in `cabal.project` with an `inputMap`.
* Force the `src` derivation to rebuild.

We can force the src derivation to rebuild by giving it invalid `sha256` (ignore the hash mismatch errors, if it has a hash then the download worked):

```
sha256 = __substring 0 (__stringLength p.pkg-src-sha256 - 6) p.pkg-src-sha256 + "000000";
```

* Update lib/load-cabal-plan.nix

Co-authored-by: Moritz Angermann <[email protected]>

* Bump test `repository` blocks

---------

Co-authored-by: Moritz Angermann <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants