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

with lib;
mkCoqDerivation {

  pname = "ceres";
  repo = "coq-ceres";
  owner = "Lysxia";

  inherit version;
  defaultVersion = if versions.range "8.8" "8.16" coq.version then "0.4.0" else null;
  release."0.4.0".sha256 = "sha256:0zwp3pn6fdj0qdig734zdczrls886al06mxqhhabms0jvvqijmbi";

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