aboutsummaryrefslogtreecommitdiff
path: root/nix/default.nix
blob: ba8291dd678b412716f8f54ba255635877bde7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  system ? builtins.currentSystem,
  pkgs ? import ./pkgs.nix { inherit system; }
}:
let
  lib = pkgs.lib;
  shell = pkgs.mkShell {
    name = "portable-postgresql";
    buildInputs = with pkgs; [
      ppq_postgresql
    ];
  };
in {
  inherit shell pkgs;
}