nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at litex 18 lines 318 B view raw
1{ lib, ocamlPackages }: 2 3let inherit (ocamlPackages) buildDunePackage csv uutf; in 4 5buildDunePackage { 6 pname = "csvtool"; 7 inherit (csv) src version; 8 9 duneVersion = "3"; 10 11 buildInputs = [ csv uutf ]; 12 13 doCheck = true; 14 15 meta = csv.meta // { 16 description = "Command line tool for handling CSV files"; 17 }; 18}