Files
2026-03-26 17:59:15 +01:00

25 lines
317 B
Nix

{
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";
};
}