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

25 lines
607 B
Nix
Raw Normal View History

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