summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/iso8601/default.nix
blob: 2a2953673f93a1887ed26e78a2c78f0f7a6d90be (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
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:

let version = "0.2.4"; in

stdenv.mkDerivation {
  pname = "ocaml-iso8601";
  inherit version;
  src = fetchzip {
    url = "https://github.com/sagotch/ISO8601.ml/archive/${version}.tar.gz";
    sha256 = "0ypdd1p04xdjxxx3b61wp7abswfrq3vcvwwaxvywxwqljw0dhydi";
  };

  buildInputs = [ ocaml findlib ocamlbuild ];
  createFindlibDestdir = true;

  meta = {
    homepage = "https://ocaml-community.github.io/ISO8601.ml/";
    description = "ISO 8601 and RFC 3999 date parsing for OCaml";
    license = stdenv.lib.licenses.mit;
    platforms = ocaml.meta.platforms or [];
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
  };
}