3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/csv/1.5.nix

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

35 lines
934 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
2017-09-20 06:38:42 +01:00
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-csv";
version = "1.5";
2017-09-20 06:38:42 +01:00
src = fetchzip {
url = "https://github.com/Chris00/ocaml-csv/releases/download/${version}/csv-${version}.tar.gz";
2017-09-20 06:38:42 +01:00
sha256 = "1ca7jgg58j24pccs5fshis726s06fdcjshnwza5kwxpjgdbvc63g";
};
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
strictDeps = true;
2017-09-20 06:38:42 +01:00
createFindlibDestdir = true;
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
buildPhase = "ocaml setup.ml -build";
doCheck = true;
checkPhase = "ocaml setup.ml -test";
installPhase = "ocaml setup.ml -install";
meta = with lib; {
2017-09-20 06:38:42 +01:00
description = "A pure OCaml library to read and write CSV files";
homepage = "https://github.com/Chris00/ocaml-csv";
2017-09-20 06:38:42 +01:00
license = licenses.lgpl21;
maintainers = [ maintainers.vbgl ];
2021-11-09 19:53:19 +00:00
platforms = ocaml.meta.platforms or [ ];
2017-09-20 06:38:42 +01:00
};
}