nixpkgs/pkgs/development/ocaml-modules/csv/csvtool.nix

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

17 lines
305 B
Nix
Raw Normal View History

2021-05-25 09:29:50 +03:00
{ lib, ocamlPackages }:
let inherit (ocamlPackages) buildDunePackage csv uutf; in
buildDunePackage {
pname = "csvtool";
inherit (csv) src version useDune2;
buildInputs = [ csv uutf ];
doCheck = true;
meta = csv.meta // {
description = "Command line tool for handling CSV files";
};
}