Skip to content

Commit

Permalink
nix: fix vendorSha256 in colima.nix (#748)
Browse files Browse the repository at this point in the history
While attempting to install colima via nix, I encountered the following error:

```
error: hash mismatch in fixed-output derivation '/nix/store/iz5w0f1hnjvh5w39q3gpiv10708188rl-colima-go-modules.drv':
         specified: sha256-bEgC7j8WvCgrJ2Ahye4mfWVEmo6Y/OO64mDIJXvtaiE=
            got:    sha256-lsTvzGFoC3Brnr1Q0Hl0ZqEDfcTeQ8vWGe+xylTyvts=
```

This change updates the hash to the correct hash indicated by the error output.
karlhepler authored Jul 18, 2023
1 parent 627c4fd commit 92fb4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colima.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ buildGo119Module {
pname = "colima";
src = ./.;
nativeBuildInputs = [ installShellFiles makeWrapper git ];
vendorSha256 = "sha256-bEgC7j8WvCgrJ2Ahye4mfWVEmo6Y/OO64mDIJXvtaiE=";
vendorSha256 = "sha256-lsTvzGFoC3Brnr1Q0Hl0ZqEDfcTeQ8vWGe+xylTyvts=";
CGO_ENABLED = 1;

subPackages = [ "cmd/colima" ];

0 comments on commit 92fb4b0

Please sign in to comment.