nixpkgs/pkgs/development/ocaml-modules/odate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
709 B
Nix
Raw Normal View History

2020-11-29 15:15:18 +00:00
{ lib, buildDunePackage, fetchFromGitHub
, menhir
}:
buildDunePackage rec {
pname = "odate";
version = "0.6";
minimalOCamlVersion = "4.07";
2020-11-29 15:15:18 +00:00
src = fetchFromGitHub {
owner = "hhugo";
repo = pname;
rev = version;
sha256 = "1dk33lr0g2jnia2gqsm6nnc7nf256qgkm3v30w477gm6y2ppfm3h";
};
strictDeps = true;
nativeBuildInputs = [ menhir ];
2020-11-29 15:15:18 +00:00
# Ensure compatibility of v0.6 with menhir ≥ 20220210
preBuild = ''
substituteInPlace dune-project --replace "(using menhir 1.0)" "(using menhir 2.0)"
'';
2020-11-29 15:15:18 +00:00
meta = {
description = "Date and duration in OCaml";
inherit (src.meta) homepage;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}