ocaml-iso8601: init at 0.2.4

OCaml library for ISO 8601 and RFC 3999 date parsing.

Homepage: http://sagotch.github.io/ISO8601.ml/
This commit is contained in:
Vincent Laporte
2015-12-15 22:43:25 +01:00
parent 23efd0e617
commit 48e7eb65f2
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, fetchzip, ocaml, findlib }:
let version = "0.2.4"; in
stdenv.mkDerivation {
name = "ocaml-iso8601-${version}";
src = fetchzip {
url = "https://github.com/sagotch/ISO8601.ml/archive/${version}.tar.gz";
sha256 = "0ypdd1p04xdjxxx3b61wp7abswfrq3vcvwwaxvywxwqljw0dhydi";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
meta = {
homepage = http://sagotch.github.io/ISO8601.ml/;
description = "ISO 8601 and RFC 3999 date parsing for OCaml";
license = stdenv.lib.licenses.mit;
platforms = ocaml.meta.platforms;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}