background code checker for golang

nix: bring go version down to 1.23.8

+7 -8
+4 -4
flake.lock
··· 22 22 }, 23 23 "nixpkgs": { 24 24 "locked": { 25 - "lastModified": 1745234285, 26 - "narHash": "sha256-GfpyMzxwkfgRVN0cTGQSkTC0OHhEkv3Jf6Tcjm//qZ0=", 25 + "lastModified": 1746422338, 26 + "narHash": "sha256-NTtKOTLQv6dPfRe00OGSywg37A1FYqldS6xiNmqBUYc=", 27 27 "owner": "nixos", 28 28 "repo": "nixpkgs", 29 - "rev": "c11863f1e964833214b767f4a369c6e6a7aba141", 29 + "rev": "5b35d248e9206c1f3baf8de6a7683fee126364aa", 30 30 "type": "github" 31 31 }, 32 32 "original": { 33 33 "owner": "nixos", 34 - "ref": "nixos-unstable", 34 + "ref": "nixos-24.11", 35 35 "repo": "nixpkgs", 36 36 "type": "github" 37 37 }
+1 -2
flake.nix
··· 2 2 description = "background code checker for golang projects"; 3 3 4 4 inputs = { 5 - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 5 + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; 6 6 gitignore = { 7 7 url = "github:hercules-ci/gitignore.nix"; 8 8 inputs.nixpkgs.follows = "nixpkgs"; ··· 47 47 pkgs.go 48 48 pkgs.gopls 49 49 pkgs.gust 50 - pkgs.jujutsu 51 50 ]; 52 51 CGO_ENABLED = 0; 53 52 };
+2 -2
go.mod
··· 1 1 module tangled.sh/oppili.bsky.social/gust 2 2 3 - go 1.24.1 3 + go 1.23.8 4 4 5 5 require ( 6 + github.com/BurntSushi/toml v1.5.0 6 7 github.com/charmbracelet/bubbles v0.21.0 7 8 github.com/charmbracelet/bubbletea v1.3.4 8 9 github.com/charmbracelet/lipgloss v1.1.0 ··· 11 12 ) 12 13 13 14 require ( 14 - github.com/BurntSushi/toml v1.5.0 // indirect 15 15 github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect 16 16 github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect 17 17 github.com/charmbracelet/x/ansi v0.8.0 // indirect