Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, ocamlPackages }:
2
3let inherit (ocamlPackages) buildDunePackage csv uutf; in
4
5buildDunePackage {
6 pname = "csvtool";
7 inherit (csv) src version useDune2;
8
9 buildInputs = [ csv uutf ];
10
11 doCheck = true;
12
13 meta = csv.meta // {
14 description = "Command line tool for handling CSV files";
15 };
16}