forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / config-file / default.nix
blob46d513f62ddecc6277ac7b1a11a74f322e32dab3
1 { stdenv, lib, fetchurl, ocaml, findlib, camlp4 }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml-config-file";
5   version = "1.2";
7   src = fetchurl {
8     url = "https://forge.ocamlcore.org/frs/download.php/1387/config-file-${version}.tar.gz";
9     sha256 = "1b02yxcnsjhr05ssh2br2ka4hxsjpdw34ldl3nk33wfnkwk7g67q";
10   };
12   nativeBuildInputs = [ ocaml findlib camlp4 ];
14   strictDeps = true;
16   createFindlibDestdir = true;
18   meta = {
19     homepage = "http://config-file.forge.ocamlcore.org/";
20     platforms = ocaml.meta.platforms or [ ];
21     description = "OCaml library used to manage the configuration file(s) of an application";
22     license = lib.licenses.lgpl2Plus;
23     maintainers = with lib.maintainers; [ vbgl ];
24   };