python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mccs / default.nix
blob50abdf631db89f71386e8209bf77ae2f3a1de743
1 { lib, fetchFromGitHub, buildDunePackage, cudf }:
3 buildDunePackage rec {
4   pname = "mccs";
5   version = "1.1+13";
7   src = fetchFromGitHub {
8     owner = "AltGr";
9     repo = "ocaml-mccs";
10     rev = version;
11     sha256 = "sha256-K249E9qkWNK4BC+ynaR3bVEyu9Tk8iCE7GptKk/aVJc=";
12   };
14   useDune2 = true;
16   propagatedBuildInputs = [
17     cudf
18   ];
20   doCheck = true;
22   meta = with lib; {
23     description = "A library providing a multi criteria CUDF solver, part of MANCOOSI project.";
24     downloadPage = "https://github.com/AltGr/ocaml-mccs";
25     homepage = "https://www.i3s.unice.fr/~cpjm/misc/";
26     license = with licenses; [ lgpl21 gpl3 ];
27     maintainers = with maintainers; [ ];
28   };