about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/stdlib-unix.nix
blob: 1b275d03dff9c044d0261cdfa43f809d3c27e3a9 (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-event-logging
, re
, ptime
, mtime
, ipaddr
, ezjsonm
, fmt
}:

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

  propagatedBuildInputs = [
    tezos-event-logging
    re
    ptime
    mtime
    ipaddr
    ezjsonm
    fmt
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: yet-another local-extension of the OCaml standard library (unix-specific fragment)";
  };
}