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.12.3";
|
|
sha256 = "100ynhc4nm4mmjxx1jhq2kjbqshxvi5x8y482520j8gsyn40g6zc";
|
|
}
|