ocaml-ng.ocamlPackages_4_01_0.csv: fix build

main
Vincent Laporte 2 years ago committed by Vincent Laporte
parent 2a4ae4357e
commit 5ff499b854
  1. 8
      pkgs/development/ocaml-modules/csv/1.5.nix

@ -22,13 +22,17 @@ stdenv.mkDerivation rec {
doCheck = true;
checkPhase = "ocaml setup.ml -test";
installPhase = "ocaml setup.ml -install";
installPhase = ''
runHook preInstall
ocaml setup.ml -install
runHook postInstall
'';
meta = with lib; {
description = "A pure OCaml library to read and write CSV files";
homepage = "https://github.com/Chris00/ocaml-csv";
license = licenses.lgpl21;
maintainers = [ maintainers.vbgl ];
platforms = ocaml.meta.platforms or [ ];
inherit (ocaml.meta) platforms;
};
}

Loading…
Cancel
Save