diff --git a/flake.nix b/flake.nix index b8de14c..f143566 100644 --- a/flake.nix +++ b/flake.nix @@ -20,6 +20,17 @@ overlays = [ gomod2nix.overlays.default ]; }); in { + + packages = eachSystem (system: { + default = pkgs.${system}.buildGoApplication { + pname = "voidway"; + version = "latest"; + goPackagePath = "git.sako.lol/sako/voidway/v4"; + src = ./.; + modules = ./gomod2nix.toml; + }; + }); + devShells = eachSystem (system: { default = pkgs.${system}.mkShell { name = "v-shell";