Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3d4a02f1a761
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5dfcb77a8e25
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 29, 2020

  1. Copy the full SHA
    5dfcb77 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/coq-modules/interval/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/coq-modules/interval/default.nix
Original file line number Diff line number Diff line change
@@ -3,9 +3,9 @@

let params =
if stdenv.lib.versionAtLeast coq.coq-version "8.7" then {
version = "3.4.1";
uid = "38104";
sha256 = "1zklv2w34k866fpwmw8q692mid5n6s75d2mmhhigrzpx5l3d4z6y";
version = "3.4.2";
uid = "38288";
sha256 = "00bgzbji0gkazwxhs4q8gz4ccqsa1y1r0m0ravr18ps2h8a8qva5";
} else {
version = "3.3.0";
uid = "37077";
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
};

passthru = {
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" "8.10" ];
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" "8.10" "8.11" ];
};