mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-29 18:33:05 +00:00
Use go 1.19 in Nix
This commit is contained in:
parent
373db0dc5e
commit
663dbf7395
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
headscale =
|
headscale =
|
||||||
pkgs.buildGo118Module rec {
|
pkgs.buildGo119Module rec {
|
||||||
pname = "headscale";
|
pname = "headscale";
|
||||||
version = headscaleVersion;
|
version = headscaleVersion;
|
||||||
src = pkgs.lib.cleanSource self;
|
src = pkgs.lib.cleanSource self;
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
overlays = [ self.overlay ];
|
overlays = [ self.overlay ];
|
||||||
inherit system;
|
inherit system;
|
||||||
};
|
};
|
||||||
buildDeps = with pkgs; [ git go_1_18 gnumake ];
|
buildDeps = with pkgs; [ git go_1_19 gnumake ];
|
||||||
devDeps = with pkgs;
|
devDeps = with pkgs;
|
||||||
buildDeps ++ [
|
buildDeps ++ [
|
||||||
golangci-lint
|
golangci-lint
|
||||||
|
|
Loading…
Reference in a new issue