1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild }:
3 stdenv.mkDerivation rec {
4 pname = "ocaml-iso8601";
7 src = fetchFromGitHub {
11 sha256 = "sha256-sXnYAJcU88797orzzfbA2XG91Lk8mDV677J1Am5o7Xo=";
14 nativeBuildInputs = [ ocaml findlib ocamlbuild ];
18 createFindlibDestdir = true;
21 homepage = "https://ocaml-community.github.io/ISO8601.ml/";
22 description = "ISO 8601 and RFC 3999 date parsing for OCaml";
23 license = lib.licenses.mit;
24 platforms = ocaml.meta.platforms or [ ];
25 maintainers = with lib.maintainers; [ vbgl ];