summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/odate/default.nix
blob: 24d2c04c6ca699615c9f42c2ad165a33ef5cd330 (plain) (blame)
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
{ lib, buildDunePackage, fetchFromGitHub
, menhir
}:

buildDunePackage rec {
  pname = "odate";
  version = "0.6";

  minimalOCamlVersion = "4.07";

  src = fetchFromGitHub {
    owner = "hhugo";
    repo = pname;
    rev = version;
    sha256 = "1dk33lr0g2jnia2gqsm6nnc7nf256qgkm3v30w477gm6y2ppfm3h";
  };

  strictDeps = true;

  nativeBuildInputs = [ menhir ];

  # Ensure compatibility of v0.6 with menhir ≥ 20220210
  preBuild = ''
    substituteInPlace dune-project --replace "(using menhir 1.0)" "(using menhir 2.0)"
  '';

  meta = {
    description = "Date and duration in OCaml";
    inherit (src.meta) homepage;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.vbgl ];
  };

}