c64467de65
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
19 lines
515 B
Nix
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;
|
|
};
|
|
}
|