refactor: move to nixpkgs 25.05

This commit is contained in:
2025-06-30 20:43:38 +00:00
parent 5e112f5df8
commit f7fda629f5
4 changed files with 142 additions and 155 deletions

View File

@@ -57,7 +57,7 @@
# hooks run, this needs to be run in an override of `mkDerivation` and not in a setup hook.
{
lib,
stdenv,
clangStdenv,
postgresql,
nix-update-script,
}: args: let
@@ -75,7 +75,7 @@
));
};
buildInputs = [postgresql] ++ prevAttrs.buildInputs or [];
buildInputs = [postgresql postgresql.pg_config] ++ prevAttrs.buildInputs or [];
installFlags =
[
@@ -137,4 +137,4 @@
+ prevAttrs.postInstall or "";
};
in
stdenv.mkDerivation (lib.extends buildPostgresqlExtension (lib.toFunction args))
clangStdenv.mkDerivation (lib.extends buildPostgresqlExtension (lib.toFunction args))