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

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

17 lines
298 B
Nix
Raw Normal View History

{ lib, buildDunePackage, csv, lwt }:
2018-12-16 10:46:31 +00:00
buildDunePackage {
pname = "csv-lwt";
inherit (csv) src version meta;
preConfigure = ''
substituteInPlace lwt/dune --replace '(libraries bytes' '(libraries '
'';
duneVersion = "3";
2018-12-16 10:46:31 +00:00
propagatedBuildInputs = [ csv lwt ];
2018-12-16 10:46:31 +00:00
doCheck = true;
2018-12-16 10:46:31 +00:00
}