Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / cudf / default.nix
blob18ea3defa19368f08b2950cdfa6269ff5a528454
1 { lib, buildDunePackage, ocaml, fetchFromGitLab, extlib, ounit2 }:
3 buildDunePackage rec {
4   pname = "cudf";
5   version = "0.10";
7   minimalOCamlVersion = "4.07";
9   src = fetchFromGitLab {
10     owner = "irill";
11     repo = pname;
12     rev = "v${version}";
13     hash = "sha256-E4KXKnso/Q3ZwcYpKPgvswNR9qd/lafKljPMxfStedM=";
14   };
16   propagatedBuildInputs = [
17     extlib
18   ];
20   checkInputs = [
21     ounit2
22   ];
23   doCheck = lib.versionAtLeast ocaml.version "4.08";
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   };