Files
cish/shell.nix
2025-08-24 00:51:34 +02:00

11 lines
176 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
go
websocat
(go-migrate.overrideAttrs (oldAttrs: {
tags = ["postgres"];
}))
];
}