mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
Use Go 1.18 for testing
This commit is contained in:
parent
306429dcb2
commit
5c1f8f8467
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
{ buildGoApplication, go, nix, lib, makeWrapper, nix-prefetch-git }:
|
||||
{ buildGoApplication, go_1_18, nix, lib, makeWrapper, nix-prefetch-git }:
|
||||
|
||||
let
|
||||
go = go_1_18;
|
||||
in
|
||||
buildGoApplication {
|
||||
inherit go;
|
||||
pname = "gomod2nix";
|
||||
|
|
|
@ -21,7 +21,7 @@ pkgs.mkShell {
|
|||
buildInputs = [
|
||||
pkgs.nix-prefetch-git
|
||||
pkgs.nixpkgs-fmt
|
||||
pkgs.go
|
||||
pkgs.gomod2nix.go
|
||||
pkgs.gomod2nix
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue