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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
537 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage }:
2017-07-12 21:24:54 +03:00
buildDunePackage rec {
pname = "csv";
version = "2.4";
src = fetchurl {
url = "https://github.com/Chris00/ocaml-${pname}/releases/download/${version}/csv-${version}.tbz";
sha256 = "13m9n8mdss6jfbiw7d5bybxn4n85vmg4zw7dc968qrgjfy0w9zhk";
};
2021-05-25 09:29:50 +03:00
useDune2 = true;
meta = {
description = "A pure OCaml library to read and write CSV files";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/Chris00/ocaml-csv";
};
}