Skip to content

Commit a8d255d

Browse files
committed
chore: flake bump and package pg in our tree
1 parent 7c47bed commit a8d255d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@
4646
#This variable works the same as 'oriole_pkgs' but builds using the upstream
4747
#nixpkgs builds of postgresql 15 and 16 + the overlays listed below
4848
pkgs = import nixpkgs {
49-
config = { allowUnfree = true; };
49+
config = {
50+
allowUnfree = true;
51+
permittedInsecurePackages = [
52+
"v8-9.7.106.18"
53+
];
54+
};
5055
inherit system;
5156
overlays = [
5257
# NOTE (aseipp): add any needed overlays here. in theory we could
@@ -293,6 +298,7 @@
293298
sfcgal = sfcgal;
294299
pg_regress = pg_regress;
295300
pg_prove = pkgs.perlPackages.TAPParserSourceHandlerpgTAP;
301+
postgresql_15 = postgresql_15;
296302
# Start a version of the server.
297303
start-server =
298304
let
@@ -513,6 +519,7 @@
513519
# NOTE: comes from our cargo-pgrx-0-11-3.nix overlay
514520
cargo-pgrx_0_11_3;
515521

522+
516523
};
517524

518525
# The list of exported 'checks' that are run with every run of 'nix

0 commit comments

Comments
 (0)