Kyoo/auth/shell.nix
2026-03-25 20:30:40 +01:00

18 lines
306 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
go
wgo
(go-migrate.overrideAttrs (_: {
tags = ["postgres" "file"];
}))
sqlc
go-swag
# for psql in cli (+ pgformatter for sql files)
postgresql_18
pgformatter
# to run tests
hurl
];
}