Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion nix/overlays/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ self, ... }:
{
flake.overlays.default = final: _prev: {
flake.overlays.default = final: prev: {
# NOTE: add any needed overlays here. in theory we could
# pull them from the overlays/ directory automatically, but we don't
# want to have an arbitrary order, since it might matter. being
Expand All @@ -17,6 +17,15 @@

xmrig = throw "The xmrig package has been explicitly disabled in this flake.";

# Hold cgal back to 6.0.2 until nixpkgs bumps sfcgal past 2.2.0 (incompatible with CGAL 6.1+).
cgal = prev.cgal.overrideAttrs (_: {
version = "6.0.2";
src = final.fetchurl {
url = "https://github.com/CGAL/cgal/releases/download/v6.0.2/CGAL-6.0.2.tar.xz";
sha256 = "sha256-8wxb58JaKj6iS8y6q1z2P6/aY8AnnzTX5/izISgh/tY=";
};
});

cargo-pgrx = final.callPackage ../cargo-pgrx/default.nix {
inherit (final) lib;
inherit (final) fetchCrate;
Expand Down
Loading