biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / ppxlib / default.nix
blobab0e6bd30c38325ec3d32aae8ffc1e6752f2f9f5
1 { lib, fetchurl, buildDunePackage, ocaml
2 , version ?
3   if lib.versionAtLeast ocaml.version "4.07"
4   then if lib.versionAtLeast ocaml.version "4.08"
5   then if lib.versionAtLeast ocaml.version "4.11"
6   then "0.32.0" else "0.24.0" else "0.15.0" else "0.13.0"
7 , ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio
8 , stdlib-shims, ocaml-migrate-parsetree-2
9 }:
11 let param = {
12   "0.8.1" = {
13     sha256 = "sha256-pct57oO7qAMEtlvEfymFOCvviWaLG0b5/7NzTC8vdSE=";
14     max_version = "4.10";
15     OMP = [ ocaml-migrate-parsetree ];
16   };
17   "0.13.0" = {
18     sha256 = "sha256-geHz0whQDg5/YQjVsN2iuHlkClwh7z3Eqb2QOBzuOdk=";
19     min_version = "4.07";
20     max_version = "4.11";
21     OMP = [ ocaml-migrate-parsetree ];
22   };
23   "0.15.0" = {
24     sha256 = "sha256-C2MNf410qJmlXMJxiLXOA+c1qT8H6gwt5WUy2P2TszA=";
25     min_version = "4.07";
26     max_version = "4.12";
27     OMP = [ ocaml-migrate-parsetree ];
28   };
29   "0.18.0" = {
30     sha256 = "sha256-nUg8NkZ64GHHDfcWbtFGXq3MNEKu+nYPtcVDm/gEfcM=";
31     min_version = "4.07";
32     max_version = "4.12";
33     OMP = [ ocaml-migrate-parsetree-2 ];
34   };
35   "0.22.0" = {
36     sha256 = "sha256-PuuR4DlmZiKEoyIuYS3uf0+it2N8U9lXLSp0E0u5bXo=";
37     min_version = "4.07";
38     max_version = "4.13";
39     OMP = [ ocaml-migrate-parsetree-2 ];
40   };
41   "0.22.2" = {
42     sha256 = "sha256-0Oih69xiILFXTXqSbwCEYMURjM73m/mgzgJC80z/Ilo=";
43     min_version = "4.07";
44     max_version = "4.14";
45     OMP = [ ocaml-migrate-parsetree-2 ];
46   };
47   "0.23.0" = {
48     sha256 = "sha256-G1g2wYa51aFqz0falPOWj08ItRm3cpzYao/TmXH+EuU=";
49     min_version = "4.07";
50     max_version = "4.14";
51   };
52   "0.24.0" = {
53     sha256 = "sha256-d2YCfC7ND1s7Rg6SEqcHCcZ0QngRPrkfMXxWxB56kMg=";
54     min_version = "4.07";
55     max_version = "5.1";
56   };
57   "0.28.0" = {
58     sha256 = "sha256-2Hrl+aCBIGMIypZICbUKZq646D0lSAHouWdUSLYM83c=";
59     min_version = "4.07";
60     max_version = "5.1";
61   };
62   "0.30.0" = {
63     sha256 = "sha256-3UpjvenSm0mBDgTXZTk3yTLxd6lByg4ZgratU6xEIRA=";
64     min_version = "4.07";
65   };
66   "0.32.0" = {
67     sha256 = "sha256-UHzHPM+JXyLutSV6IkODjBijigkQX8/1Xu75FIVVQis=";
68     min_version = "4.07";
69   };
70 }."${version}"; in
72 if param ? max_version && lib.versionAtLeast ocaml.version param.max_version
73 || param ? min_version && lib.versionOlder ocaml.version param.min_version
74 then throw "ppxlib-${version} is not available for OCaml ${ocaml.version}"
75 else
77 buildDunePackage rec {
78   pname = "ppxlib";
79   inherit version;
81   src = fetchurl {
82     url = "https://github.com/ocaml-ppx/ppxlib/releases/download/${version}/ppxlib-${version}.tbz";
83     inherit (param) sha256;
84   };
86   propagatedBuildInputs = [
87     ocaml-compiler-libs
88   ] ++ (param.OMP or []) ++ [
89     ppx_derivers
90     stdio
91     stdlib-shims
92   ];
94   meta = {
95     description = "Comprehensive ppx tool set";
96     license = lib.licenses.mit;
97     maintainers = [ lib.maintainers.vbgl ];
98     homepage = "https://github.com/ocaml-ppx/ppxlib";
99   };