commit
2f0b2be1f2
27
pkgs/development/ocaml-modules/csv/default.nix
Normal file
27
pkgs/development/ocaml-modules/csv/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{stdenv, fetchurl, ocaml, findlib}:
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
|
||||||
|
name = "ocaml-csv-1.3.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://forge.ocamlcore.org/frs/download.php/1376/csv-1.3.3.tar.gz";
|
||||||
|
sha256 = "19qsvw3n7k4xpy0sw7n5s29kzj91myihjljhr5js6xcxwj4cydh2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ];
|
||||||
|
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
configurePhase = "ocaml setup.ml -configure --prefix $out";
|
||||||
|
|
||||||
|
buildPhase = "ocaml setup.ml -build";
|
||||||
|
|
||||||
|
installPhase = "ocaml setup.ml -install";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A pure OCaml library to read and write CSV files";
|
||||||
|
homepage = "https://forge.ocamlcore.org/projects/csv/";
|
||||||
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
@ -3230,6 +3230,8 @@ let
|
|||||||
|
|
||||||
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
|
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
|
||||||
|
|
||||||
|
csv = callPackage ../development/ocaml-modules/csv { };
|
||||||
|
|
||||||
deriving = callPackage ../development/tools/ocaml/deriving { };
|
deriving = callPackage ../development/tools/ocaml/deriving { };
|
||||||
|
|
||||||
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user