mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
92a1b57bb1
ocamlPackages.base_quickcheck 0.14.0 → 0.14.1 ocamlPackages.ppx_custom_printf: 0.14.0 → 0.14.1 ocamlPackages.ppx_expect: 0.14.0 → 0.14.1 ocamlPackages.ppx_optcomp: 0.14.0 → 0.14.1 ocamlPackages.ppx_sexp_conv: 0.14.1 → 0.14.3 ocamlPackages.ppx_sexp_message: 0.14.1 → 0.14.2 ocamlPackages.ppx_typerep_conv: 0.14.1 → 0.14.2 ocamlPackages.visitors: 20210127 → 20210316 ocamlPackages.pgocaml: 4.2.2 → 4.2.2-dev-20210111
28 lines
785 B
Nix
28 lines
785 B
Nix
{ lib, buildDunePackage, fetchFromGitLab, ppxlib, ppx_deriving, result }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "visitors";
|
|
version = "20210316";
|
|
|
|
useDune2 = true;
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "fpottier";
|
|
repo = pname;
|
|
rev = version;
|
|
domain = "gitlab.inria.fr";
|
|
sha256 = "12d45ncy3g9mpcs6n58aq6yzs5qz662msgcr7ccms9jhiq44m8f7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ppxlib ppx_deriving result ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.inria.fr/fpottier/visitors";
|
|
license = licenses.lgpl21;
|
|
description = "An OCaml syntax extension (technically, a ppx_deriving plugin) which generates object-oriented visitors for traversing and transforming data structures";
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|