about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/zmq/default.nix
blob: b92d8e6cb867963462ee4c88e7e7b0eae0d84a7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchurl, buildDunePackage, dune-configurator, czmq, stdint }:

buildDunePackage rec {
  pname = "zmq";
  version = "5.2.1";

  src = fetchurl {
    url = "https://github.com/issuu/ocaml-zmq/releases/download/${version}/zmq-${version}.tbz";
    hash = "sha256-hVKfaTrUFqEBsv5hFB7JwsR630M0DKnqhB0QHpxcHKc=";
  };

  buildInputs = [ czmq dune-configurator ];

  meta = {
    description = "ZeroMQ bindings for OCaml";
    license     = lib.licenses.mit;
    maintainers = with lib.maintainers; [ akavel ];
    homepage = "https://engineering.issuu.com/ocaml-zmq/";
  };
}