mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
25 lines
346 B
Nix
25 lines
346 B
Nix
{ 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;
|
|
};
|
|
}
|