nixpkgs/pkgs/development/ocaml-modules/tezos/rpc-http-client-unix.nix

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

24 lines
446 B
Nix
Raw Normal View History

{ lib
, buildDunePackage
, tezos-stdlib
, tezos-rpc-http-client
, cohttp-lwt-unix
}:
buildDunePackage {
pname = "tezos-rpc-http-client-unix";
inherit (tezos-stdlib) version useDune2;
src = "${tezos-stdlib.base_src}/src/lib_rpc_http";
propagatedBuildInputs = [
tezos-rpc-http-client
cohttp-lwt-unix
];
doCheck = true;
meta = tezos-stdlib.meta // {
description = "Tezos: unix implementation of the RPC client";
};
}