ocamlPackages.ocaml_extlib-1-7-7: init at 1.7.7

Unfortunately there's no way to get Haxe 4.0 and 4.1 to work with extlib
1.7.8 (not even without the minimal install), so we need to package
1.7.7 again, at least until 1.7.9 (?) brings backwards compatibility
packages, hopefully.

authored by sternenseemann and committed by sterni 5252b4bd da940051

+16 -1
+11
pkgs/development/ocaml-modules/extlib/1.7.7.nix
··· 1 + # Older version of extlib for Haxe 4.0 and 4.1. 2 + # May be replaceable by the next extlib + extlib-base64 release. 3 + { fetchurl, ocaml_extlib }: 4 + 5 + ocaml_extlib.overrideAttrs (_: rec { 6 + version = "1.7.7"; 7 + src = fetchurl { 8 + url = "https://github.com/ygrek/ocaml-extlib/releases/download/${version}/extlib-${version}.tar.gz"; 9 + sha256 = "1sxmzc1mx3kg62j8kbk0dxkx8mkf1rn70h542cjzrziflznap0s1"; 10 + }; 11 + })
+5 -1
pkgs/top-level/ocaml-packages.nix
··· 1018 1018 1019 1019 ocaml-protoc = callPackage ../development/ocaml-modules/ocaml-protoc { }; 1020 1020 1021 - ocaml_extlib = callPackage ../development/ocaml-modules/extlib { }; 1021 + ocaml_extlib = ocaml_extlib-1-7-8; 1022 + 1023 + ocaml_extlib-1-7-8 = callPackage ../development/ocaml-modules/extlib { }; 1024 + 1025 + ocaml_extlib-1-7-7 = callPackage ../development/ocaml-modules/extlib/1.7.7.nix { }; 1022 1026 1023 1027 ocb-stubblr = callPackage ../development/ocaml-modules/ocb-stubblr { }; 1024 1028