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

36 lines
909 B
Nix
Raw Normal View History

2015-06-10 20:35:22 +00:00
{stdenv, fetchurl, ocaml, findlib, camlp4, which, ulex, easy-format, ocaml_optcomp, xmlm, base64}:
stdenv.mkDerivation rec {
2016-06-07 17:36:34 +00:00
version = "0.6.13";
2015-06-10 20:35:22 +00:00
name = "piqi-${version}";
src = fetchurl {
url = "https://github.com/alavrik/piqi/archive/v${version}.tar.gz";
2016-06-07 17:36:34 +00:00
sha256 = "1whqr2bb3gds2zmrzqnv8vqka9928w4lx6mi6g244kmbwb2h8d8l";
2015-06-10 20:35:22 +00:00
};
2017-01-25 07:06:38 +00:00
buildInputs = [ocaml findlib camlp4 which ocaml_optcomp];
propagatedBuildInputs = [ulex xmlm easy-format base64];
2015-06-10 20:35:22 +00:00
patches = [ ./no-ocamlpath-override.patch ];
createFindlibDestdir = true;
2017-01-25 07:06:38 +00:00
buildPhase = ''
make
make -C piqilib piqilib.cma
'';
2015-06-10 20:35:22 +00:00
installPhase = ''
make install;
make ocaml-install;
'';
meta = with stdenv.lib; {
homepage = http://piqi.org;
description = "Universal schema language and a collection of tools built around it";
2015-06-10 20:35:22 +00:00
license = licenses.asl20;
maintainers = [ maintainers.maurer ];
};
}