Merge branch 'main' of git.berlin.ccc.de:cccb/sanic

This commit is contained in:
XenGi 2024-01-29 22:09:57 +01:00
commit 755ff32c64
Signed by: xengi
SSH key fingerprint: SHA256:FGp51kRvGOcWnTHiOI39ImwVO4A3fpvR30nPX3LpV7g
3 changed files with 22 additions and 3 deletions

View file

@ -21,12 +21,14 @@
src = ./.;
modules = ./gomod2nix.toml;
};
in {
in
{
packages.default = sanic;
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
go
go-tools # staticcheck
go-tools # staticcheck
gomod2nix.packages.${system}.default
sanic
];