about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mccs/default.nix
blob: dbd55b2c599d2fa032114554569fbaede6e5b7d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, fetchFromGitHub, buildDunePackage, cudf }:

buildDunePackage rec {
  pname = "mccs";
  version = "1.1+17";

  src = fetchFromGitHub {
    owner = "AltGr";
    repo = "ocaml-mccs";
    rev = version;
    hash = "sha256-0NZF2W/eWwZRXnMJh9LmOdbE/CRDYeLUUx6ty4irP6U=";
  };

  propagatedBuildInputs = [
    cudf
  ];

  doCheck = true;

  meta = with lib; {
    description = "Library providing a multi criteria CUDF solver, part of MANCOOSI project";
    downloadPage = "https://github.com/AltGr/ocaml-mccs";
    homepage = "https://www.i3s.unice.fr/~cpjm/misc/";
    license = with licenses; [ lgpl21 gpl3 ];
    maintainers = with maintainers; [ ];
  };
}