linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / coq-modules / CoLoR / default.nix
blob4c5b6a4f6a9a74c836c5e5e402928ede6e4e8a15
1 { lib, mkCoqDerivation, coq, bignums, version ? null }:
3 with lib; mkCoqDerivation {
4   pname = "color";
5   owner = "fblanqui";
6   inherit version;
7   defaultVersion = with versions; switch coq.coq-version [
8     {case = range "8.10" "8.11"; out = "1.7.0"; }
9     {case = range "8.8"  "8.9";  out = "1.6.0"; }
10     {case = range "8.6"  "8.7";  out = "1.4.0"; }
11   ] null;
13   release."1.7.0".rev    = "08b5481ed6ea1a5d2c4c068b62156f5be6d82b40";
14   release."1.7.0".sha256 = "1w7fmcpf0691gcwq00lm788k4ijlwz3667zj40j5jjc8j8hj7cq3";
15   release."1.6.0".rev    = "328aa06270584b578edc0d2925e773cced4f14c8";
16   release."1.6.0".sha256 = "07sy9kw1qlynsqy251adgi8b3hghrc9xxl2rid6c82mxfsp329sd";
17   release."1.4.0".rev    = "168c6b86c7d3f87ee51791f795a8828b1521589a";
18   release."1.4.0".sha256 = "1d2whsgs3kcg5wgampd6yaqagcpmzhgb6a0hp6qn4lbimck5dfmm";
20   extraBuildInputs = [ bignums ];
21   enableParallelBuilding = false;
23   meta = {
24     homepage = "http://color.inria.fr/";
25     description = "CoLoR is a library of formal mathematical definitions and proofs of theorems on rewriting theory and termination whose correctness has been mechanically checked by the Coq proof assistant.";
26     maintainers = with maintainers; [ jpas jwiegley ];
27   };