nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 25 lines 523 B view raw
1{ 2 buildDunePackage, 3 gen_js_api, 4 js_of_ocaml-compiler, 5}: 6 7buildDunePackage { 8 pname = "ojs"; 9 10 inherit (gen_js_api) version src; 11 12 propagatedBuildInputs = [ js_of_ocaml-compiler ]; 13 14 doCheck = false; # checks depend on gen_js_api, which is a cycle 15 16 minimalOCamlVersion = "4.08"; 17 18 meta = { 19 inherit (gen_js_api.meta) homepage license maintainers; 20 description = "Runtime Library for gen_js_api generated libraries"; 21 longDescription = '' 22 To be used in conjunction with gen_js_api 23 ''; 24 }; 25}