mirror of
https://github.com/zoriya/cish.git
synced 2025-12-05 23:06:18 +00:00
11 lines
176 B
Nix
11 lines
176 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
go
|
|
websocat
|
|
(go-migrate.overrideAttrs (oldAttrs: {
|
|
tags = ["postgres"];
|
|
}))
|
|
];
|
|
}
|