nixpkgs/pkgs/development/ocaml-modules/csv/default.nix

19 lines
515 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildDunePackage }:
2017-07-12 20:24:54 +02:00
buildDunePackage rec {
pname = "csv";
version = "2.2";
2017-09-20 07:38:42 +02:00
src = fetchurl {
url = "https://github.com/Chris00/ocaml-${pname}/releases/download/${version}/csv-${version}.tbz";
sha256 = "1llwjdi14vvfy4966crapibq0djii71x47b0yxhjcl5jw4xnsaha";
2017-09-20 07:38:42 +02:00
};
2017-09-20 07:38:42 +02:00
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;
2017-09-20 07:38:42 +02:00
};
}