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; }