mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-03-28 12:27:51 -04:00
18 lines
306 B
Nix
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
|
|
];
|
|
}
|