1 { stdenv, lib, fetchzip, ocaml, findlib, ocamlbuild }:
3 let version = "0.2.4"; in
6 pname = "ocaml-iso8601";
9 url = "https://github.com/sagotch/ISO8601.ml/archive/${version}.tar.gz";
10 sha256 = "0ypdd1p04xdjxxx3b61wp7abswfrq3vcvwwaxvywxwqljw0dhydi";
13 buildInputs = [ ocaml findlib ocamlbuild ];
14 createFindlibDestdir = true;
17 homepage = "https://ocaml-community.github.io/ISO8601.ml/";
18 description = "ISO 8601 and RFC 3999 date parsing for OCaml";
19 license = lib.licenses.mit;
20 platforms = ocaml.meta.platforms or [];
21 maintainers = with lib.maintainers; [ vbgl ];