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

19 lines
517 B
Nix
Raw Normal View History

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