My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/csv/csvtool.nix

16 lines
305 B

{ 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";
};
}