1{ buildDunePackage, lib, fetchurl, cppo }:
2
3buildDunePackage rec {
4 pname = "extlib";
5 version = "1.7.9";
6
7 minimalOCamlVersion = "4.02";
8
9 src = fetchurl {
10 url = "https://ygrek.org/p/release/ocaml-${pname}/${pname}-${version}.tar.gz";
11 hash = "sha512-I4asafA36lIINcBiTTmun7/+Q6ILGOJH3gMiMu1vQZ1me1PSMUxvVtxx02i/C2IBpWwvPypb39kzdmxabLmHaA==";
12 };
13
14 nativeBuildInputs = [ cppo ];
15
16 doCheck = true;
17
18 meta = {
19 homepage = "https://github.com/ygrek/ocaml-extlib";
20 description = "Enhancements to the OCaml Standard Library modules";
21 license = lib.licenses.lgpl21Only;
22 maintainers = [ lib.maintainers.sternenseemann ];
23 };
24}