mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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.
This commit is contained in:
parent
da9400512d
commit
5252b4bd1b
11
pkgs/development/ocaml-modules/extlib/1.7.7.nix
Normal file
11
pkgs/development/ocaml-modules/extlib/1.7.7.nix
Normal file
@ -0,0 +1,11 @@
|
||||
# Older version of extlib for Haxe 4.0 and 4.1.
|
||||
# May be replaceable by the next extlib + extlib-base64 release.
|
||||
{ fetchurl, ocaml_extlib }:
|
||||
|
||||
ocaml_extlib.overrideAttrs (_: rec {
|
||||
version = "1.7.7";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ygrek/ocaml-extlib/releases/download/${version}/extlib-${version}.tar.gz";
|
||||
sha256 = "1sxmzc1mx3kg62j8kbk0dxkx8mkf1rn70h542cjzrziflznap0s1";
|
||||
};
|
||||
})
|
@ -1018,7 +1018,11 @@ let
|
||||
|
||||
ocaml-protoc = callPackage ../development/ocaml-modules/ocaml-protoc { };
|
||||
|
||||
ocaml_extlib = callPackage ../development/ocaml-modules/extlib { };
|
||||
ocaml_extlib = ocaml_extlib-1-7-8;
|
||||
|
||||
ocaml_extlib-1-7-8 = callPackage ../development/ocaml-modules/extlib { };
|
||||
|
||||
ocaml_extlib-1-7-7 = callPackage ../development/ocaml-modules/extlib/1.7.7.nix { };
|
||||
|
||||
ocb-stubblr = callPackage ../development/ocaml-modules/ocb-stubblr { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user