lol
1{ lib, buildDunePackage, ocaml, fetchFromGitLab, extlib, ounit2 }:
2
3buildDunePackage rec {
4 pname = "cudf";
5 version = "0.10";
6
7 minimalOCamlVersion = "4.07";
8
9 src = fetchFromGitLab {
10 owner = "irill";
11 repo = pname;
12 rev = "v${version}";
13 hash = "sha256-E4KXKnso/Q3ZwcYpKPgvswNR9qd/lafKljPMxfStedM=";
14 };
15
16 propagatedBuildInputs = [
17 extlib
18 ];
19
20 checkInputs = [
21 ounit2
22 ];
23 doCheck = lib.versionAtLeast ocaml.version "4.08";
24
25 meta = with lib; {
26 description = "A library for CUDF format";
27 homepage = "https://www.mancoosi.org/cudf/";
28 downloadPage = "https://gforge.inria.fr/projects/cudf/";
29 license = licenses.lgpl3;
30 maintainers = with maintainers; [ ];
31 };
32}