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

18 lines
267 B
Nix

{
fetchurl,
buildDunePackage,
testo,
ppx_deriving,
}:
buildDunePackage {
pname = "testo-diff";
inherit (testo) version src;
propagatedBuildInputs = [ ppx_deriving ];
meta = testo.meta // {
description = "Pure-OCaml diff implementation";
};
}