nixpkgs/pkgs/development/ocaml-modules/iso8601/default.nix
Vincent Laporte 48e7eb65f2 ocaml-iso8601: init at 0.2.4
OCaml library for ISO 8601 and RFC 3999 date parsing.

Homepage: http://sagotch.github.io/ISO8601.ml/
2015-12-15 22:43:25 +01:00

23 lines
634 B
Nix

{ 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 ];
};
}