about summary refs log tree commit diff
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmermann@inria.fr>2022-02-21 16:05:47 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-02-21 16:20:04 +0100
commit61ac4169922ca62d00bfe7f28dae6e1f27fd9c89 (patch)
treef7b3d0bfa6bdc8fb5618e5554f04a5ece00d2a25 /pkgs/development/coq-modules
parent8eb1922f647d28ec831b6edffdb3a675f2ad9fc8 (diff)
downloadnixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.tar
nixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.tar.gz
nixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.tar.bz2
nixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.tar.lz
nixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.tar.xz
nixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.tar.zst
nixlib-61ac4169922ca62d00bfe7f28dae6e1f27fd9c89.zip
coqPackages.hydra-battles: fix version checking logic
With this change, the derivation can be relied on without overlay in the upstream project.
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/hydra-battles/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/coq-modules/hydra-battles/default.nix b/pkgs/development/coq-modules/hydra-battles/default.nix
index e7dc7474e857..7977363d83f5 100644
--- a/pkgs/development/coq-modules/hydra-battles/default.nix
+++ b/pkgs/development/coq-modules/hydra-battles/default.nix
@@ -33,5 +33,5 @@ with lib;
   };
 }).overrideAttrs(o:
   let inherit (o) version; in {
-    propagatedBuildInputs = [ equations ] ++ optional (versions.isGe "0.6" version) LibHyps;
+    propagatedBuildInputs = [ equations ] ++ optional (versions.isGe "0.6" version || version == "dev") LibHyps;
   })