Skip to content

Instantly share code, notes, and snippets.

View kevoriordan's full-sized avatar

Kevin O'Riordan kevoriordan

  • Earnest Research
  • Dublin, Ireland
View GitHub Profile
@gusmacaulay
gusmacaulay / shell.nix
Last active January 1, 2024 10:57 — forked from lightdiscord/shell.nix
Postgresql/Postgis inside nix-shell with sqitch and default postgres user
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "postgresql-inside-nixshell";
buildInputs = [
glibcLocales
(pkgs.postgresql.withPackages (p: [ p.postgis ]))
sqitchPg
pgcli