4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
33 lines
872 B
Nix
33 lines
872 B
Nix
{ lib, stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocaml${ocaml.version}-csv-1.5";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/Chris00/ocaml-csv/releases/download/1.5/csv-1.5.tar.gz";
|
|
sha256 = "1ca7jgg58j24pccs5fshis726s06fdcjshnwza5kwxpjgdbvc63g";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
|
|
|
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; {
|
|
description = "A pure OCaml library to read and write CSV files";
|
|
homepage = "https://github.com/Chris00/ocaml-csv";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.vbgl ];
|
|
platforms = ocaml.meta.platforms or [];
|
|
};
|
|
}
|