about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/signer-services.nix
blob: 2f7333312fa59323822fad650513469a440fb889 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-client-base
}:

buildDunePackage {
  pname = "tezos-signer-services";
  inherit (tezos-stdlib) version useDune2;
  src = "${tezos-stdlib.base_src}/src/lib_signer_services";

  propagatedBuildInputs = [
    tezos-client-base
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: descriptions of RPCs exported by `tezos-signer`";
  };
}