From 9a26cc68c0f32f61b227ea5738b5abf49a1e91d2 Mon Sep 17 00:00:00 2001 From: yihuang Date: Mon, 30 May 2022 16:11:30 +0800 Subject: [PATCH] Lower the prerequisite of gomod2nix `go_1_18` is only available in nixpkgs master, but `go_1_17` is available in stable `release-21.11`. --- default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/default.nix b/default.nix index 081cd27..8c13939 100644 --- a/default.nix +++ b/default.nix @@ -1,8 +1,5 @@ -{ buildGoApplication, go_1_18, nix, lib, makeWrapper, nix-prefetch-git }: +{ buildGoApplication, go, nix, lib, makeWrapper, nix-prefetch-git }: -let - go = go_1_18; -in buildGoApplication { inherit go; pname = "gomod2nix";