mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
postgresqlPackages.apache_datasketches: fix build
This commit is contained in:
parent
eb82888147
commit
76f6b2d675
1 changed files with 3 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
lib,
|
lib,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
postgresql,
|
postgresql,
|
||||||
boost,
|
boost186,
|
||||||
postgresqlTestExtension,
|
postgresqlTestExtension,
|
||||||
buildPostgresqlExtension,
|
buildPostgresqlExtension,
|
||||||
}:
|
}:
|
||||||
|
@ -39,7 +39,8 @@ buildPostgresqlExtension (finalAttrs: {
|
||||||
|
|
||||||
sourceRoot = main_src.name;
|
sourceRoot = main_src.name;
|
||||||
|
|
||||||
buildInputs = [ boost ];
|
# fails to build with boost 1.87
|
||||||
|
buildInputs = [ boost186 ];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
runHook prePatch
|
runHook prePatch
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue