postgresqlJitPackages.lantern: fix build

The link_llvm_objects.sh script used a hardcoded /bin/bash shebang,
which failed during a JIT-enabled build.
This commit is contained in:
Wolfgang Walther
2024-10-27 09:00:40 +01:00
parent 203af243af
commit 357b7aabfe
@@ -19,6 +19,10 @@ stdenv.mkDerivation (finalAttrs: {
fetchSubmodules = true;
};
postPatch = ''
patchShebangs --build scripts/link_llvm_objects.sh
'';
nativeBuildInputs = [
cmake
];