We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed6f0c commit 15fdb27Copy full SHA for 15fdb27
pkgs/applications/science/logic/coq/default.nix
@@ -95,6 +95,7 @@ let
95
self = stdenv.mkDerivation {
96
pname = "coq";
97
inherit (fetched) version src;
98
+ exact-version = args.version;
99
100
passthru = {
101
inherit coq-version;
@@ -233,7 +234,8 @@ self = stdenv.mkDerivation {
233
234
}; in
235
if coqAtLeast "8.21" then self.overrideAttrs(o: {
236
# coq-core is now a shim for rocq
- propagatedBuildInputs = o.propagatedBuildInputs ++ [ rocq-core ];
237
+ propagatedBuildInputs = o.propagatedBuildInputs
238
+ ++ [ (rocq-core.override { version = o.exact-version; }) ];
239
buildPhase = ''
240
runHook preBuild
241
dune build -p coq-core,coqide-server${lib.optionalString buildIde ",rocqide"} -j $NIX_BUILD_CORES
0 commit comments