mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: erlang: Update to 19.3.
* gnu/packages/erlang.scm (erlang): Update to 19.3. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a34242eedc
commit
5c4ea87224
1 changed files with 6 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016 Steve Sprang <scs@stevesprang.com>
|
;;; Copyright © 2016 Steve Sprang <scs@stevesprang.com>
|
||||||
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2016 Pjotr Prins <pjotr.public12@thebird.nl>
|
;;; Copyright © 2016, 2017 Pjotr Prins <pjotr.guix@thebird.nl>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -34,8 +34,7 @@ (define-module (gnu packages erlang)
|
||||||
(define-public erlang
|
(define-public erlang
|
||||||
(package
|
(package
|
||||||
(name "erlang")
|
(name "erlang")
|
||||||
;; When updating, remember to update the hash of erlang-manpages!
|
(version "19.3")
|
||||||
(version "19.0")
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
;; The tarball from http://erlang.org/download contains many
|
;; The tarball from http://erlang.org/download contains many
|
||||||
|
@ -46,7 +45,7 @@ (define-public erlang
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dxyz6x1yfv33fd0xfry2ihylkyfa2d655q1vxvbz8dflyd64yqh"))))
|
"1b47jh549yywyp8fbs8a8j4ydr3zn982navzyqvlms6rg8vwb0pw"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl)
|
`(("perl" ,perl)
|
||||||
|
@ -61,7 +60,7 @@ (define-public erlang
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07j0l7ary936hil38xr3hvfw6j74pshkyyi98kc9cassbbcdd8y7"))))))
|
"0p6r3n3y7lbhv38sw8f2vi1xlmc137gyspk9ap086w1nszyjy6gq"))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("ncurses" ,ncurses)
|
`(("ncurses" ,ncurses)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
|
@ -162,9 +161,8 @@ (define-public erlang
|
||||||
(zero? (system* "tar" "xvf" manpages))
|
(zero? (system* "tar" "xvf" manpages))
|
||||||
(rename-file "COPYRIGHT"
|
(rename-file "COPYRIGHT"
|
||||||
(string-append share "/misc/erlang/COPYRIGHT"))
|
(string-append share "/misc/erlang/COPYRIGHT"))
|
||||||
;; Delete superfluous files.
|
;; Delete superfluous file.
|
||||||
(for-each delete-file '("PR.template"
|
(delete-file "PR.template")))))))))
|
||||||
"README"))))))))))
|
|
||||||
(home-page "http://erlang.org/")
|
(home-page "http://erlang.org/")
|
||||||
(synopsis "The Erlang programming language")
|
(synopsis "The Erlang programming language")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue