Skip to content

Commit

Permalink
Fix coqPackages.mathcomp-altreals dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
proux01 authored and vbgl committed Oct 29, 2024
1 parent 161ba5b commit 46143dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/coq-modules/mathcomp-analysis/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ let

mathcomp_ = package: let
classical-deps = [ mathcomp.algebra mathcomp-finmap ];
altreals-deps = [ mathcomp-bigenough ];
analysis-deps = [ mathcomp.field mathcomp-bigenough ];
intra-deps = lib.optionals (package != "single") (map mathcomp_ packages.${package});
pkgpath = lib.switch package [
Expand All @@ -80,6 +81,7 @@ let
propagatedBuildInputs =
intra-deps
++ lib.optionals (lib.elem package [ "classical" "single" ]) classical-deps
++ lib.optionals (lib.elem package [ "altreals" "single" ]) altreals-deps
++ lib.optionals (lib.elem package [ "analysis" "single" ]) analysis-deps;

preBuild = ''
Expand Down

0 comments on commit 46143dd

Please sign in to comment.