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.

28 lines
665 B
Nix
Raw Normal View History

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