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

29 lines
694 B
Nix
Raw Normal View History

{ lib, fetchzip, buildDunePackage, camlp5
2018-09-20 07:45:31 +02:00
, ppx_tools_versioned, ppx_deriving, re
}:
2019-06-23 21:53:51 +02:00
buildDunePackage rec {
pname = "elpi";
version = "1.11.2";
2019-05-07 11:31:57 +02:00
src = fetchzip {
url = "https://github.com/LPCIC/elpi/releases/download/v${version}/elpi-v${version}.tbz";
sha256 = "15hamy9ifr05kczadwh3yj2gmr12a9z1jwppmp5yrns0vykjbj76";
};
2018-09-20 07:45:31 +02:00
2019-06-23 21:53:51 +02:00
minimumOCamlVersion = "4.04";
2018-09-20 07:45:31 +02:00
2019-06-23 21:53:51 +02:00
buildInputs = [ ppx_tools_versioned ];
2018-09-20 07:45:31 +02:00
2019-06-23 21:53:51 +02:00
propagatedBuildInputs = [ camlp5 ppx_deriving re ];
2018-09-20 07:45:31 +02:00
meta = {
description = "Embeddable λProlog Interpreter";
2019-06-23 21:53:51 +02:00
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/LPCIC/elpi";
2018-09-20 07:45:31 +02:00
};
useDune2 = true;
2018-09-20 07:45:31 +02:00
}