summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/csv/1.5.nix
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-09-20 05:38:42 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-09-20 05:39:12 +0000
commit1e9deaad6612c0f60fd9a9af795d9e8a95463cd6 (patch)
tree93f67d5e452b9f23020e861de2e8bb40b0a64945 /pkgs/development/ocaml-modules/csv/1.5.nix
parent19e3c580ad60319596cab44e1ed75640b69c09d4 (diff)
downloadnixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.tar
nixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.tar.gz
nixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.tar.bz2
nixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.tar.lz
nixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.tar.xz
nixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.tar.zst
nixpkgs-1e9deaad6612c0f60fd9a9af795d9e8a95463cd6.zip
ocamlPackages.csv: 1.7 -> 2.0
Diffstat (limited to 'pkgs/development/ocaml-modules/csv/1.5.nix')
-rw-r--r--pkgs/development/ocaml-modules/csv/1.5.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/csv/1.5.nix b/pkgs/development/ocaml-modules/csv/1.5.nix
new file mode 100644
index 00000000000..a7505f6f51c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/csv/1.5.nix
@@ -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 [];
+  };
+}