blob: bb376c02a1b282fd74df4c95cb0e8aa528fce574 (
plain)
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";
};
}
|