nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 25 lines 351 B view raw
1{ 2 buildDunePackage, 3 zelus, 4 lablgtk, 5}: 6 7buildDunePackage { 8 pname = "zelus-gtk"; 9 inherit (zelus) version src postPatch; 10 11 minimalOCamlVersion = "4.10"; 12 13 nativeBuildInputs = [ 14 zelus 15 ]; 16 17 buildInputs = [ 18 lablgtk 19 ]; 20 21 meta = { 22 description = "Zelus GTK library"; 23 inherit (zelus.meta) homepage license maintainers; 24 }; 25}