From b15aea613b3941eb23b70c31352a551464a5e1fb Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 26 Sep 2022 17:59:36 +0200 Subject: [PATCH] packages/hyprspace: use Go 1.18 --- packages/networking/hyprspace/go.mod | 2 +- packages/networking/hyprspace/project.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/networking/hyprspace/go.mod b/packages/networking/hyprspace/go.mod index 95e6aac..3df845d 100644 --- a/packages/networking/hyprspace/go.mod +++ b/packages/networking/hyprspace/go.mod @@ -1,6 +1,6 @@ module github.com/hyprspace/hyprspace -go 1.16 +go 1.18 require ( github.com/DataDrake/cli-ng/v2 v2.0.2 diff --git a/packages/networking/hyprspace/project.nix b/packages/networking/hyprspace/project.nix index 300f95d..fe0d5f3 100644 --- a/packages/networking/hyprspace/project.nix +++ b/packages/networking/hyprspace/project.nix @@ -3,11 +3,11 @@ { projectShells.hyprspace = { tools = [ - pkgs.go + pkgs.go_1_18 ]; env.GOPATH.eval = "$PRJ_DATA_DIR/go"; }; - packages.hyprspace = with pkgs; buildGoModule { + packages.hyprspace = with pkgs; buildGo118Module { pname = "hyprspace"; version = "0.2.2";