1{ stdenv, fetchurl, ocaml, findlib, camlp4 }:
2
3stdenv.mkDerivation {
4 name = "ocaml-config-file-1.2";
5
6 src = fetchurl {
7 url = https://forge.ocamlcore.org/frs/download.php/1387/config-file-1.2.tar.gz;
8 sha256 = "1b02yxcnsjhr05ssh2br2ka4hxsjpdw34ldl3nk33wfnkwk7g67q";
9 };
10
11 buildInputs = [ ocaml findlib camlp4 ];
12
13 createFindlibDestdir = true;
14
15 meta = {
16 homepage = http://config-file.forge.ocamlcore.org/;
17 platforms = ocaml.meta.platforms;
18 description = "An OCaml library used to manage the configuration file(s) of an application";
19 license = stdenv.lib.licenses.lgpl2Plus;
20 maintainers = with stdenv.lib.maintainers; [ vbgl ];
21 };
22}