ocamlPackages.csv: 1.5 -> 1.7
This commit is contained in:
parent
6620e007f4
commit
574f3c3bfe
@ -1,19 +1,35 @@
|
|||||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
|
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, ocaml_lwt }:
|
||||||
|
|
||||||
|
let param =
|
||||||
|
if stdenv.lib.versionAtLeast ocaml.version "4.2"
|
||||||
|
then {
|
||||||
|
version = "1.7";
|
||||||
|
url = https://math.umons.ac.be/anum/software/csv/csv-1.7.tar.gz;
|
||||||
|
sha256 = "1mmcjiiz0jppgipavpph5kn04xcpalw4scbjrw2z3drghvr3qqwf";
|
||||||
|
lwtSupport = true;
|
||||||
|
} else {
|
||||||
|
version = "1.5";
|
||||||
|
url = https://github.com/Chris00/ocaml-csv/releases/download/1.5/csv-1.5.tar.gz;
|
||||||
|
sha256 = "1ca7jgg58j24pccs5fshis726s06fdcjshnwza5kwxpjgdbvc63g";
|
||||||
|
lwtSupport = false;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
|
||||||
name = "ocaml-csv-1.5";
|
name = "ocaml${ocaml.version}-csv-${param.version}";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = https://github.com/Chris00/ocaml-csv/releases/download/1.5/csv-1.5.tar.gz;
|
inherit (param) url sha256;
|
||||||
sha256 = "1ca7jgg58j24pccs5fshis726s06fdcjshnwza5kwxpjgdbvc63g";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild ];
|
buildInputs = [ ocaml findlib ocamlbuild ]
|
||||||
|
++ stdenv.lib.optional param.lwtSupport ocaml_lwt;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
|
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests"
|
||||||
|
+ stdenv.lib.optionalString param.lwtSupport " --enable-lwt";
|
||||||
|
|
||||||
buildPhase = "ocaml setup.ml -build";
|
buildPhase = "ocaml setup.ml -build";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user