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

20 lines
485 B
Nix
Raw Normal View History

2019-11-09 15:48:22 +00:00
{ lib, fetchurl, buildDunePackage }:
2019-11-09 15:48:22 +00:00
buildDunePackage rec {
pname = "facile";
version = "1.1.4";
src = fetchurl {
2019-11-09 15:48:22 +00:00
url = "https://github.com/Emmanuel-PLF/facile/releases/download/${version}/facile-${version}.tbz";
sha256 = "0jqrwmn6fr2vj2rrbllwxq4cmxykv7zh0y4vnngx29f5084a04jp";
};
2019-11-09 15:48:22 +00:00
doCheck = true;
meta = {
homepage = "http://opti.recherche.enac.fr/facile/";
2019-11-09 15:48:22 +00:00
license = lib.licenses.lgpl21Plus;
description = "A Functional Constraint Library";
};
}