summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/zelus-gtk/default.nix
blob: c0e0e586066af71d85a6a49d3746ec4407b77910 (plain) (tree)























                                                      
{ buildDunePackage
, zelus
, lablgtk
}:

buildDunePackage {
  pname = "zelus-gtk";
  inherit (zelus) version src postPatch;

  minimalOCamlVersion = "4.08.1";

  nativeBuildInputs = [
    zelus
  ];

  buildInputs = [
    lablgtk
  ];

  meta = {
    description = "Zelus GTK library";
    inherit (zelus.meta) homepage license maintainers;
  };
}