biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / facile / default.nix
blob488a7d151d1b1b5f22a95b6c8dea6e47f51424a1
1 { lib, fetchurl, buildDunePackage, ocaml }:
3 lib.throwIf (lib.versionAtLeast ocaml.version "5.0")
4   "facile is not available for OCaml ≥ 5.0"
6 buildDunePackage rec {
7   pname = "facile";
8   version = "1.1.4";
10   src = fetchurl {
11     url = "https://github.com/Emmanuel-PLF/facile/releases/download/${version}/facile-${version}.tbz";
12     sha256 = "0jqrwmn6fr2vj2rrbllwxq4cmxykv7zh0y4vnngx29f5084a04jp";
13   };
15   doCheck = true;
17   duneVersion = if lib.versionAtLeast ocaml.version "4.12" then "2" else "1";
18   postPatch = lib.optionalString (duneVersion != "1") "dune upgrade";
20   meta = {
21     homepage = "http://opti.recherche.enac.fr/facile/";
22     license = lib.licenses.lgpl21Plus;
23     description = "A Functional Constraint Library";
24   };