summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/zelus-gtk/default.nix
blob: 759a625d26a2a71559a41d131f5f4c4854ea4210 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildDunePackage
, zelus
, lablgtk
}:

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

  minimalOCamlVersion = "4.10";

  nativeBuildInputs = [
    zelus
  ];

  buildInputs = [
    lablgtk
  ];

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