0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

postgresqlPackages.apache_datasketches: fix build

This commit is contained in:
Wolfgang Walther 2025-02-01 10:24:55 +01:00
parent eb82888147
commit 76f6b2d675
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1

View file

@ -3,7 +3,7 @@
lib,
fetchFromGitHub,
postgresql,
boost,
boost186,
postgresqlTestExtension,
buildPostgresqlExtension,
}:
@ -39,7 +39,8 @@ buildPostgresqlExtension (finalAttrs: {
sourceRoot = main_src.name;
buildInputs = [ boost ];
# fails to build with boost 1.87
buildInputs = [ boost186 ];
patchPhase = ''
runHook prePatch