this repo has no description

allow go build to produce static bins

Akshay 09f105fe 555dfd74

Changed files
+4 -1
+4 -1
flake.nix
··· 40 formatter = forAllSystems (system: nixpkgsFor."${system}".alejandra); 41 devShells = forAllSystems (system: let 42 pkgs = nixpkgsFor.${system}; 43 in { 44 - default = pkgs.mkShell { 45 nativeBuildInputs = [ 46 pkgs.go 47 pkgs.air
··· 40 formatter = forAllSystems (system: nixpkgsFor."${system}".alejandra); 41 devShells = forAllSystems (system: let 42 pkgs = nixpkgsFor.${system}; 43 + staticShell = pkgs.mkShell.override { 44 + stdenv = pkgs.pkgsStatic.stdenv; 45 + }; 46 in { 47 + default = staticShell { 48 nativeBuildInputs = [ 49 pkgs.go 50 pkgs.air