nixpkgs/pkgs/development/ocaml-modules/csv/default.nix
R. RyanTM c64467de65 ocamlPackages.csv: 2.1 -> 2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ocaml4.06.1-csv/versions
2018-11-18 23:32:14 -08:00

19 lines
515 B
Nix

{ stdenv, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "csv";
version = "2.2";
src = fetchurl {
url = "https://github.com/Chris00/ocaml-${pname}/releases/download/${version}/csv-${version}.tbz";
sha256 = "1llwjdi14vvfy4966crapibq0djii71x47b0yxhjcl5jw4xnsaha";
};
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;
};
}