about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--README.md17
-rw-r--r--gn/packages/elixir.scm4
2 files changed, 19 insertions, 2 deletions
diff --git a/README.md b/README.md
index 51c4aef..b086cb8 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,23 @@ or using a checked out Guix repo with
 Some (or most) of these package definitions should make it upstream
 into the GNU Guix repository when tested and stable.
 
+## Erlang
+
+Installation of erlang with debugger:
+
+    env GUIX_PACKAGE_PATH=./guix-bioinformatics guix package -i erlang
+    erl
+    Erlang/OTP 19 [erts-8.0] [source] [64-bit] [smp:4:4] [async-threads:10] [kernel-poll:false]
+
+## Elixir
+
+Installation:
+
+    env GUIX_PACKAGE_PATH=./guix-bioinformatics guix package -i elixir
+    iex
+    Erlang/OTP 19 [erts-8.0] [source] [64-bit] [smp:4:4] [async-threads:10] [kernel-poll:false]
+    Interactive Elixir (1.2.6) - press Ctrl+C to exit (type h() ENTER for help)
+
 ## Slurm and munge
 
 Install slurm with
diff --git a/gn/packages/elixir.scm b/gn/packages/elixir.scm
index 2f9bcc3..15206f0 100644
--- a/gn/packages/elixir.scm
+++ b/gn/packages/elixir.scm
@@ -30,7 +30,7 @@
 (define-public elixir
   (package
     (name "elixir")
-    (version "1.2.3")
+    (version "1.2.6")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -39,7 +39,7 @@
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "09s8469830s4070i0m04fxdhqimkdyc5k9jylm5vpfz9l3z4wvl8"))))
+                "05h9bd752rs88p4sb1k1fp7xfr3df8wnpbyda7qxjjwbgnfyvm1g"))))
     (build-system gnu-build-system)
     (inputs
      `(("erlang" ,erlang)))