nixpkgs/pkgs/development/ocaml-modules/mparser/default.nix
2017-06-14 18:04:23 +00:00

26 lines
767 B
Nix

{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-mparser-1.2.3";
src = fetchzip {
url = http://github.com/cakeplus/mparser/archive/1.2.3.tar.gz;
sha256 = "1f8vpagmv0jdm50pxs2xwh2xcmvgaprx4kw871hlml9ahsflxgnw";
};
buildInputs = [ ocaml findlib ocamlbuild ];
configurePhase = "ocaml setup.ml -configure";
buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install";
createFindlibDestdir = true;
meta = {
description = "A simple monadic parser combinator OCaml library";
license = stdenv.lib.licenses.lgpl21Plus;
homepage = https://github.com/cakeplus/mparser;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}