about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/base.nix
blob: 544daa297acc9d1a85e30f6a36ad282c6cb0bb7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-crypto
, tezos-hacl-glue-unix
, tezos-micheline
, tezos-test-helpers
, ptime
, ipaddr
, bls12-381-unix
}:

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

  propagatedBuildInputs = [
    tezos-crypto
    tezos-micheline
    tezos-hacl-glue-unix
    bls12-381-unix
    ptime
    ipaddr
  ];

  checkInputs = [
    # tezos-test-helpers
  ];

  # circular dependency if we add this
  doCheck = false;

  meta = tezos-stdlib.meta // {
    description = "Tezos: meta-package and pervasive type definitions for Tezos";
  };
}