summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/janestreet/janePackage_0_14.nix
blob: bc273b4655c9ce9f414369a09231c3ba57026309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  lib,
  fetchFromGitHub,
  buildDunePackage,
  defaultVersion ? "0.14.0",
}:

{
  pname,
  version ? defaultVersion,
  hash,
  minimalOCamlVersion ? "4.08",
  doCheck ? true,
  buildInputs ? [ ],
  ...
}@args:

buildDunePackage (
  args
  // {
    duneVersion = "3";
    inherit version buildInputs;

    inherit minimalOCamlVersion;

    src = fetchFromGitHub {
      owner = "janestreet";
      repo = pname;
      rev = "v${version}";
      sha256 = hash;
    };

    inherit doCheck;

    meta = {
      license = lib.licenses.mit;
      homepage = "https://github.com/janestreet/${pname}";
    }
    // args.meta;
  }
)