lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.gen_js_api: 1.0.9 -> 1.1.1

+5 -2
+2 -2
pkgs/development/ocaml-modules/gen_js_api/default.nix
··· 9 9 10 10 buildDunePackage rec { 11 11 pname = "gen_js_api"; 12 - version = "1.0.9"; 12 + version = "1.1.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "LexiFi"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "1qx6if1avr484bl9x1h0cksdc6gqw5i4pwzdr27h46hppnnvi8y8"; 18 + sha256 = "sha256-0FKKYPbSBza/Q6oZniq/UHi5zBjD/i7j5ds3ZDWkBTs="; 19 19 }; 20 20 21 21 minimalOCamlVersion = "4.08";
+3
pkgs/development/ocaml-modules/gen_js_api/ojs.nix
··· 1 1 { buildDunePackage 2 2 , gen_js_api 3 + , js_of_ocaml-compiler 3 4 }: 4 5 5 6 buildDunePackage rec { 6 7 pname = "ojs"; 7 8 8 9 inherit (gen_js_api) version src; 10 + 11 + propagatedBuildInputs = [ js_of_ocaml-compiler ]; 9 12 10 13 doCheck = false; # checks depend on gen_js_api, which is a cycle 11 14