1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ fetchurl, buildDunePackage, testo, ppx_deriving, }: buildDunePackage { pname = "testo-diff"; inherit (testo) version src; propagatedBuildInputs = [ ppx_deriving ]; meta = testo.meta // { description = "Pure-OCaml diff implementation"; }; }