tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
postgresql16Packages.pg_hint_plan: fix build on darwin
Mario Rodas
2 years ago
47a896f3
6f9e07dd
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
servers
sql
postgresql
ext
pg_hint_plan.nix
+1
-1
pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix
···
47
47
buildInputs = [ postgresql ];
48
48
49
49
installPhase = ''
50
50
-
install -D -t $out/lib pg_hint_plan.so
50
50
+
install -D -t $out/lib pg_hint_plan${postgresql.dlSuffix}
51
51
install -D -t $out/share/postgresql/extension *.sql
52
52
install -D -t $out/share/postgresql/extension *.control
53
53
'';