2018-07-23 18:23:07 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, ocaml, findlib, piqi, camlp4 }:
|
2015-06-10 22:00:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-07 18:37:38 +01:00
|
|
|
version = "0.7.5";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "piqi-ocaml";
|
2015-06-10 22:00:52 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/alavrik/piqi-ocaml/archive/v${version}.tar.gz";
|
2016-06-07 18:37:38 +01:00
|
|
|
sha256 = "0ngz6y8i98i5v2ma8nk6mc83pdsmf2z0ks7m3xi6clfg3zqbddrv";
|
2015-06-10 22:00:52 +01:00
|
|
|
};
|
|
|
|
|
2018-07-23 18:23:07 +01:00
|
|
|
patches = [ (fetchpatch {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://github.com/alavrik/piqi-ocaml/commit/336e8fdb84e77f4105e9bbb5ab545b8729101308.patch";
|
2018-07-23 18:23:07 +01:00
|
|
|
sha256 = "071s4xjyr6xx95v6az2lbl2igc87n7z5jqnnbhfq2pidrxakd0la";
|
|
|
|
})];
|
|
|
|
|
2017-01-25 07:06:38 +00:00
|
|
|
buildInputs = [ ocaml findlib piqi camlp4 ];
|
2015-06-10 22:00:52 +01:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
|
|
|
installPhase = "DESTDIR=$out make install";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://piqi.org";
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "Universal schema language and a collection of tools built around it. These are the ocaml bindings";
|
2015-06-10 22:00:52 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.maurer ];
|
|
|
|
};
|
|
|
|
}
|