summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-04-19 18:11:54 +0000
committerGitHub <noreply@github.com>2021-04-19 18:11:54 +0000
commitea5bd4364e5d32f307f658995cac73666752056e (patch)
tree500ae65696ee8f3bd732fbc94ac286ee0690277a /pkgs/development/ocaml-modules
parent383afd76e88ecf0b6605b39e690812f9bba011bd (diff)
parent6ef7c23763b82a9c816c793c1788b2fd29c3ee0a (diff)
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/extlib/1.7.7.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/extlib/1.7.7.nix b/pkgs/development/ocaml-modules/extlib/1.7.7.nix
new file mode 100644
index 0000000000000..3314ebcb9b5dd
--- /dev/null
+++ b/pkgs/development/ocaml-modules/extlib/1.7.7.nix
@@ -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";
+  };
+})