329a922fb2
This commit pins go versions for nomad 0.11 and 0.12. Future versions of Nomad should have their versions pinned from the beginning, even if they support the latest-at-the-time version of Go to prevent accidental version bumps on unsupported go versions. See https://github.com/NixOS/nixpkgs/pull/96414 for further discussion around this change.
8 lines
179 B
Nix
8 lines
179 B
Nix
{ callPackage, buildGoPackage }:
|
|
|
|
callPackage ./generic.nix {
|
|
inherit buildGoPackage;
|
|
version = "0.11.4";
|
|
sha256 = "1sykp9sji6f564s7bz0cvnr9w5x92n0l1r1djf1bl7jvv2mi1mcb";
|
|
}
|