1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/ocaml-modules/csv/default.nix

21 lines
519 B
Nix
Raw Normal View History

{ lib, 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";
2020-12-28 17:12:43 +00:00
useDune2 = true;
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 = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/Chris00/ocaml-csv";
2017-09-20 06:38:42 +01:00
};
}