insync: 3.9.3.60019 -> 3.9.4.60020 (#363380)
[NixPkgs.git] / pkgs / development / ocaml-modules / config-file / default.nix
blobf20a7d9b113f67eadeee95917b6f6ff2d88db1a8
2   stdenv,
3   lib,
4   fetchurl,
5   ocaml,
6   findlib,
7   camlp4,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "ocaml-config-file";
12   version = "1.2";
14   src = fetchurl {
15     url = "https://forge.ocamlcore.org/frs/download.php/1387/config-file-${version}.tar.gz";
16     sha256 = "1b02yxcnsjhr05ssh2br2ka4hxsjpdw34ldl3nk33wfnkwk7g67q";
17   };
19   nativeBuildInputs = [
20     ocaml
21     findlib
22     camlp4
23   ];
25   strictDeps = true;
27   createFindlibDestdir = true;
29   meta = {
30     homepage = "http://config-file.forge.ocamlcore.org/";
31     platforms = ocaml.meta.platforms or [ ];
32     description = "OCaml library used to manage the configuration file(s) of an application";
33     license = lib.licenses.lgpl2Plus;
34     maintainers = with lib.maintainers; [ vbgl ];
35   };