ocamlPackages.zmq: init at 20180726

This commit is contained in:
Mateusz Czapliński
2018-10-22 06:51:17 +00:00
committed by Vincent Laporte
parent d620d8fa67
commit 98d4e42145
5 changed files with 64 additions and 0 deletions
@@ -0,0 +1,12 @@
{ stdenv, ocaml, findlib, dune, zmq, ocaml_lwt }:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-zmq-lwt-${version}";
inherit (zmq) version src installPhase meta;
buildInputs = [ ocaml findlib dune ];
propagatedBuildInputs = [ zmq ocaml_lwt ];
buildPhase = "dune build -p zmq-lwt";
}