chore(deps): update dependency go to v1.26.0 (#169)

* Update dependency go to v1.26.0

* Add nix dev shell

* Go mod tidy

* Remove version in glangci-lint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Gallant <davegallant@proton.me>
This commit is contained in:
renovate[bot]
2026-02-14 07:38:10 -05:00
committed by GitHub
parent 9892ebe864
commit 65509016cb
7 changed files with 19 additions and 13 deletions

View File

@@ -1,4 +1,6 @@
{
description = "vpngate - VPN server connector";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
@@ -33,12 +35,19 @@
default = vg;
vpngate = vg;
};
devShell = pkgs.mkShell {
devShells.default = pkgs.mkShell {
name = "vpngate-dev";
description = "Development environment for vpngate";
packages = with pkgs; [
go_1_26
gopls
gotools
go_1_25
golangci-lint
];
shellHook = ''
echo "Welcome to the vpngate dev environment"
go version
'';
};
};
in