summary refs log tree commit diff
path: root/pkgs/development/coq-modules/coq-record-update/default.nix
blob: 7c9ee2dca646c1f5d715cb12ff676e117682906d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, mkCoqDerivation, coq, version ? null , paco, coq-ext-lib }:

with lib; mkCoqDerivation rec {
  pname = "coq-record-update";
  owner = "tchajed";
  inherit version;
  defaultVersion = with versions; switch coq.coq-version [
    { case = range "8.10" "8.14";  out = "0.3.0"; }
  ] null;
  release."0.3.0".sha256 = "1ffr21dd6hy19gxnvcd4if2450iksvglvkd6q5713fajd72hmc0z";
  releaseRev = v: "v${v}";
  meta = {
    description = "Library to create Coq record update functions";
    maintainers = with maintainers; [ ineol ];
  };
}