summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/testo/util.nix
blob: e824b2f3cb0e89a6dcfd0195185703b555f3b47e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  fetchurl,
  buildDunePackage,
  testo,
  testo-diff,
  fpath,
  re,
}:

buildDunePackage {
  pname = "testo-util";
  inherit (testo) version src;

  propagatedBuildInputs = [
    fpath
    re
    testo-diff
  ];

  meta = testo.meta // {
    description = "Modules shared by testo, testo-lwt, etc";
  };
}