Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
354 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ ocamlPackages }:
let
inherit (ocamlPackages) buildDunePackage csv uutf;
in
buildDunePackage {
pname = "csvtool";
inherit (csv) src version;
duneVersion = "3";
buildInputs = [
csv
uutf
];
doCheck = true;
meta = csv.meta // {
description = "Command line tool for handling CSV files";
mainProgram = "csvtool";
};
}