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: 0925c482c837
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c4cad8cfa7ba
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 19, 2018

  1. Copy the full SHA
    c4cad8c View commit details
Showing with 7 additions and 4 deletions.
  1. +7 −4 pkgs/development/coq-modules/bignums/default.nix
11 changes: 7 additions & 4 deletions pkgs/development/coq-modules/bignums/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{ stdenv, fetchFromGitHub, coq }:

let params =
let v_8_8_0 = {
rev = "V8.8.0";
sha256 = "1ymxyrvjygscxkfj3qkq66skl3vdjhb670rzvsvgmwrjkrakjnfg";
};
in
{
"8.6" = {
rev = "v8.6.0";
@@ -10,10 +15,8 @@ let params =
rev = "V8.7.0";
sha256 = "11c4sdmpd3l6jjl4v6k213z9fhrmmm1xnly3zmzam1wrrdif4ghl";
};
"8.8" = {
rev = "V8.8+beta1";
sha256 = "1ymxyrvjygscxkfj3qkq66skl3vdjhb670rzvsvgmwrjkrakjnfg";
};
"8.8" = v_8_8_0;
"8.9" = v_8_8_0;
};
param = params."${coq.coq-version}"
; in