ocamlPackages.csv: 1.7 -> 2.0
This commit is contained in:
parent
19e3c580ad
commit
1e9deaad66
32
pkgs/development/ocaml-modules/csv/1.5.nix
Normal file
32
pkgs/development/ocaml-modules/csv/1.5.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
|
||||||
|
name = "ocaml${ocaml.version}-csv-1.5";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://github.com/Chris00/ocaml-csv/releases/download/1.5/csv-1.5.tar.gz";
|
||||||
|
sha256 = "1ca7jgg58j24pccs5fshis726s06fdcjshnwza5kwxpjgdbvc63g";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
||||||
|
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
|
||||||
|
|
||||||
|
buildPhase = "ocaml setup.ml -build";
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkPhase = "ocaml setup.ml -test";
|
||||||
|
|
||||||
|
installPhase = "ocaml setup.ml -install";
|
||||||
|
|
||||||
|
meta = with stdenv.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 [];
|
||||||
|
};
|
||||||
|
}
|
@ -1,48 +1,26 @@
|
|||||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, ocaml_lwt }:
|
{ stdenv, fetchurl, ocaml, findlib, jbuilder }:
|
||||||
|
|
||||||
let param =
|
stdenv.mkDerivation rec {
|
||||||
if stdenv.lib.versionAtLeast ocaml.version "4.2"
|
version = "2.0";
|
||||||
then {
|
name = "ocaml${ocaml.version}-csv-${version}";
|
||||||
version = "1.7";
|
src = fetchurl {
|
||||||
url = https://math.umons.ac.be/anum/software/csv/csv-1.7.tar.gz;
|
url = "https://github.com/Chris00/ocaml-csv/releases/download/2.0/csv-2.0.tbz";
|
||||||
sha256 = "1mmcjiiz0jppgipavpph5kn04xcpalw4scbjrw2z3drghvr3qqwf";
|
sha256 = "1g6xsybwc5ifr7n4hkqlh3294njzca12xg86ghh6pqy350wpq1zp";
|
||||||
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 {
|
|
||||||
|
|
||||||
name = "ocaml${ocaml.version}-csv-${param.version}";
|
|
||||||
|
|
||||||
src = fetchzip {
|
|
||||||
inherit (param) url sha256;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild ]
|
unpackCmd = "tar -xjf $src";
|
||||||
++ stdenv.lib.optional param.lwtSupport ocaml_lwt;
|
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
buildInputs = [ ocaml findlib jbuilder ];
|
||||||
|
|
||||||
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests"
|
buildPhase = "jbuilder build -p csv";
|
||||||
+ stdenv.lib.optionalString param.lwtSupport " --enable-lwt";
|
|
||||||
|
|
||||||
buildPhase = "ocaml setup.ml -build";
|
inherit (jbuilder) installPhase;
|
||||||
|
|
||||||
doCheck = true;
|
meta = {
|
||||||
checkPhase = "ocaml setup.ml -test";
|
|
||||||
|
|
||||||
installPhase = "ocaml setup.ml -install";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "A pure OCaml library to read and write CSV files";
|
description = "A pure OCaml library to read and write CSV files";
|
||||||
homepage = https://github.com/Chris00/ocaml-csv;
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
license = licenses.lgpl21;
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||||
maintainers = [ maintainers.vbgl ];
|
inherit (src.meta) homepage;
|
||||||
platforms = ocaml.meta.platforms or [];
|
inherit (ocaml.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -172,7 +172,10 @@ let
|
|||||||
lwt = ocaml_lwt;
|
lwt = ocaml_lwt;
|
||||||
};
|
};
|
||||||
|
|
||||||
csv = callPackage ../development/ocaml-modules/csv { };
|
csv =
|
||||||
|
if lib.versionAtLeast ocaml.version "4.2"
|
||||||
|
then callPackage ../development/ocaml-modules/csv { }
|
||||||
|
else callPackage ../development/ocaml-modules/csv/1.5.nix { };
|
||||||
|
|
||||||
curses = callPackage ../development/ocaml-modules/curses { };
|
curses = callPackage ../development/ocaml-modules/curses { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user