1{
2 lib,
3 fetchFromGitHub,
4 buildDunePackage,
5 cudf,
6}:
7
8buildDunePackage rec {
9 pname = "mccs";
10 version = "1.1+19";
11
12 src = fetchFromGitHub {
13 owner = "AltGr";
14 repo = "ocaml-mccs";
15 rev = version;
16 hash = "sha256-xvcqPXyzVGXXFYRVdFPaCfieFEguWffWVB04ImEuPvQ=";
17 };
18
19 propagatedBuildInputs = [
20 cudf
21 ];
22
23 doCheck = true;
24
25 meta = with lib; {
26 description = "Library providing a multi criteria CUDF solver, part of MANCOOSI project";
27 downloadPage = "https://github.com/AltGr/ocaml-mccs";
28 homepage = "https://www.i3s.unice.fr/~cpjm/misc/";
29 license = with licenses; [
30 lgpl21
31 gpl3
32 ];
33 maintainers = [ ];
34 };
35}