nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 16 lines 305 B view raw
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}