summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/csv/default.nix
blob: c168045831f15d4a0cb18ec6a7d9208cad6f54f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, ocaml, findlib, jbuilder }:

stdenv.mkDerivation rec {
	version = "2.0";
	name = "ocaml${ocaml.version}-csv-${version}";
	src = fetchurl {
		url = "https://github.com/Chris00/ocaml-csv/releases/download/2.0/csv-2.0.tbz";
		sha256 = "1g6xsybwc5ifr7n4hkqlh3294njzca12xg86ghh6pqy350wpq1zp";
	};

	unpackCmd = "tar -xjf $src";

	buildInputs = [ ocaml findlib jbuilder ];

	buildPhase = "jbuilder build -p csv";

	inherit (jbuilder) installPhase;

	meta = {
		description = "A pure OCaml library to read and write CSV files";
		license = stdenv.lib.licenses.lgpl21;
		maintainers = [ stdenv.lib.maintainers.vbgl ];
		homepage = https://github.com/Chris00/ocaml-csv;
		inherit (ocaml.meta) platforms;
	};
}