nixpkgs/pkgs/development/ocaml-modules/cudf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
714 B
Nix
Raw Normal View History

2023-06-13 04:25:28 +00:00
{ lib, buildDunePackage, ocaml, fetchFromGitLab, extlib, ounit2 }:
2021-06-09 01:08:57 +00:00
2023-06-13 04:25:28 +00:00
buildDunePackage rec {
pname = "cudf";
version = "0.10";
2021-06-09 01:08:57 +00:00
2023-06-13 04:25:28 +00:00
minimalOCamlVersion = "4.07";
2021-06-09 01:08:57 +00:00
2023-06-13 04:25:28 +00:00
src = fetchFromGitLab {
owner = "irill";
repo = pname;
rev = "v${version}";
hash = "sha256-E4KXKnso/Q3ZwcYpKPgvswNR9qd/lafKljPMxfStedM=";
};
2021-06-09 01:08:57 +00:00
propagatedBuildInputs = [
extlib
2021-06-09 01:08:57 +00:00
];
checkInputs = [
2023-06-13 04:25:28 +00:00
ounit2
2021-06-09 01:08:57 +00:00
];
doCheck = lib.versionAtLeast ocaml.version "4.08";
2021-06-09 01:08:57 +00:00
meta = with lib; {
description = "A library for CUDF format";
homepage = "https://www.mancoosi.org/cudf/";
2021-06-09 01:08:57 +00:00
downloadPage = "https://gforge.inria.fr/projects/cudf/";
license = licenses.lgpl3;
2021-11-03 00:38:27 +00:00
maintainers = with maintainers; [ ];
2021-06-09 01:08:57 +00:00
};
}