Skip to content

Commit

Permalink
Nix to v0.60.0
Browse files Browse the repository at this point in the history
  • Loading branch information
F1bonacc1 committed Jul 21, 2023
1 parent 0eaaa69 commit 79d0cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let pkg = "github.com/f1bonacc1/process-compose/src/config";
in
buildGoModule rec {
pname = "process-compose";
version = "0.55.0";
version = "0.60.0";


src = lib.cleanSource ./.;
Expand All @@ -18,7 +18,7 @@ buildGoModule rec {

nativeBuildInputs = [ installShellFiles ];

vendorSha256 = "ngzE1yVn3BRQxtRRnsJ7apm6XKt3fgM5JQzBJkTaVp4=";
vendorSha256 = "Z5vCxzdpd2OmlZ/woHhlLN2QMgqa9mm873QGuqDToiM=";
#vendorSha256 = lib.fakeSha256;

postInstall = ''
Expand Down

1 comment on commit 79d0cbd

@mikeland73
Copy link

Choose a reason for hiding this comment

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

I think this causes a version miss-match because the github label 0.60.0 is pointing to a commit that has a nix version 0.55.0. This causes the vendor hash not to match. The nix version change should happen before or on the same commit as the github label.

Please sign in to comment.