diff options
author | pjotrp | 2016-06-10 16:12:43 +0000 |
---|---|---|
committer | pjotrp | 2016-06-10 16:12:43 +0000 |
commit | e09fea7289773d4a641292e7c7cb75a66c7bd91f (patch) | |
tree | ec6892225b7e3a55dfc3aba514217188cce7dea3 | |
parent | d50cc619e588bca594596a8005a350cfeacc7833 (diff) | |
download | guix-bioinformatics-e09fea7289773d4a641292e7c7cb75a66c7bd91f.tar.gz |
Elixir: updated
-rw-r--r-- | README.md | 17 | ||||
-rw-r--r-- | gn/packages/elixir.scm | 4 |
2 files changed, 19 insertions, 2 deletions
@@ -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))) |