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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
577 B
Nix
Raw Normal View History

2022-10-21 06:39:26 +00:00
{ lib, fetchurl, buildDunePackage, dune-configurator, czmq, stdint }:
2018-10-16 19:38:57 +00:00
buildDunePackage rec {
pname = "zmq";
2023-10-04 19:59:26 +00:00
version = "5.2.1";
2021-02-08 08:04:07 +00:00
2022-10-21 06:39:26 +00:00
src = fetchurl {
2023-10-04 19:59:26 +00:00
url = "https://github.com/issuu/ocaml-zmq/releases/download/${version}/zmq-${version}.tbz";
hash = "sha256-hVKfaTrUFqEBsv5hFB7JwsR630M0DKnqhB0QHpxcHKc=";
2018-10-16 19:38:57 +00:00
};
2021-02-08 08:04:07 +00:00
buildInputs = [ czmq dune-configurator ];
meta = {
2018-10-16 19:38:57 +00:00
description = "ZeroMQ bindings for OCaml";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ akavel ];
2022-10-21 06:39:26 +00:00
homepage = "https://engineering.issuu.com/ocaml-zmq/";
2018-10-16 19:38:57 +00:00
};
}