about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/coq-modules/parsec/default.nix
blob: fa1aa3c8399a4dbb10b435abf85747df82057df2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, mkCoqDerivation, coq, ceres, coq-ext-lib, version ? null }:

with lib;
mkCoqDerivation {

  pname = "parsec";
  repo = "coq-parsec";
  owner = "liyishuai";

  propagatedBuildInputs = [ ceres coq-ext-lib ];
  releaseRev = (v: "v${v}");

  inherit version;
  defaultVersion = if versions.range "8.12" "8.13" coq.version then "0.1.0" else null;
  release."0.1.0".sha256 = "sha256:01avfcqirz2b9wjzi9iywbhz9szybpnnj3672dgkfsimyg9jgnsr";

  meta = {
    description = "Library for serialization to S-expressions";
    license = licenses.mit;
    maintainers = with maintainers; [ Zimmi48 ];
  };
}