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

buildDunePackage {
  pname = "tezos-stdlib-unix";
  inherit (tezos-stdlib) version src useDune2 preBuild doCheck;

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

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