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

28 lines
637 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildDunePackage, czmq, stdint }:
2018-10-16 22:38:57 +03:00
buildDunePackage rec {
pname = "zmq";
2018-10-16 22:38:57 +03:00
version = "20180726";
2018-10-16 22:38:57 +03:00
src = fetchFromGitHub {
owner = "issuu";
repo = "ocaml-zmq";
rev = "d312a8458d6b688f75470248f11875fbbfa5bb1a";
sha256 = "1f5l4bw78y4drabhyvmpj3z8k30bill33ca7bzhr02m55yf6gqpf";
};
patches = [
./ocaml-zmq-issue43.patch
];
buildInputs = [ czmq ];
2018-10-16 22:38:57 +03:00
propagatedBuildInputs = [ stdint ];
meta = with stdenv.lib; {
description = "ZeroMQ bindings for OCaml";
license = licenses.mit;
maintainers = with maintainers; [ akavel ];
inherit (src.meta) homepage;
};
}