Skip to content

Commit

Permalink
fix: postgresql static build
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillespie authored and kderme committed Oct 22, 2024
1 parent 873c4da commit 46a1c49
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@
version = "2.2.0";
};
})

(final: prev: {
postgresql = prev.postgresql.overrideAttrs (_:
final.lib.optionalAttrs (final.stdenv.hostPlatform.isMusl) {
doCheck = false;
});
})
];
};

Expand Down

0 comments on commit 46a1c49

Please sign in to comment.