2016-02-06 21:40:53 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2016 Steve Sprang <scs@stevesprang.com>
|
2017-12-13 03:09:58 +01:00
|
|
|
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
|
2017-05-06 12:59:25 +02:00
|
|
|
;;; Copyright © 2016, 2017 Pjotr Prins <pjotr.guix@thebird.nl>
|
2018-02-15 22:54:11 +01:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
Correct name and email address for ng0.
* .mailmap, Makefile.am, doc/guix.de.texi, doc/guix.fr.texi,
doc/guix.texi, etc/completion/fish/guix.fish,
gnu/packages/accessibility.scm, gnu/packages/admin.scm,
gnu/packages/audio.scm, gnu/packages/autotools.scm,
gnu/packages/cdrom.scm, gnu/packages/check.scm,
gnu/packages/cinnamon.scm, gnu/packages/compression.scm,
gnu/packages/crypto.scm, gnu/packages/databases.scm,
gnu/packages/django.scm, gnu/packages/dns.scm, gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm, gnu/packages/emacs.scm,
gnu/packages/enlightenment.scm, gnu/packages/erlang.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm,
gnu/packages/forth.scm, gnu/packages/fvwm.scm, gnu/packages/games.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/gtk.scm,
gnu/packages/guile-wm.scm,gnu/packages/guile-xyz.scm,
gnu/packages/haskell-check.scm, gnu/packages/haskell-crypto.scm,
gnu/packages/haskell.scm, gnu/packages/image-viewers.scm,
gnu/packages/image.scm, gnu/packages/irc.scm,
gnu/packages/language.scm, gnu/packages/libcanberra.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm, gnu/packages/lolcode.scm,
gnu/packages/lxde.scm, gnu/packages/lxqt.scm, gnu/packages/mail.scm,
gnu/packages/markup.scm, gnu/packages/mate.scm, gnu/packages/maths.scm,
gnu/packages/mc.scm, gnu/packages/messaging.scm, gnu/packages/music.scm,
gnu/packages/ncurses.scm, gnu/packages/networking.scm,
gnu/packages/nickle.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl-check.scm, gnu/packages/perl.scm,
gnu/packages/python-compression.scm, gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm, gnu/packages/python-xyz.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/ruby.scm,
gnu/packages/rust.scm, gnu/packages/scheme.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/ssh.scm, gnu/packages/suckless.scm, gnu/packages/tbb.scm,
gnu/packages/telephony.scm, gnu/packages/text-editors.scm,
gnu/packages/textutils.scm, gnu/packages/time.scm, gnu/packages/tls.scm,
gnu/packages/tor.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vim.scm, gnu/packages/web.scm,
gnu/packages/wm.scm, gnu/packages/xdisorg.scm, gnu/packages/xfce.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/services/certbot.scm,
gnu/services/desktop.scm, gnu/services/version-control.scm,
gnu/services/web.scm, guix/import/hackage.scm, guix/licenses.scm:
Correct name and email address for ng0.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
2019-03-14 10:33:38 +01:00
|
|
|
;;; Copyright © 2018 ng0 <ng0@n0.is>
|
2016-02-06 21:40:53 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages erlang)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix build-system gnu)
|
2018-12-27 10:11:31 +01:00
|
|
|
#:use-module (guix build-system emacs)
|
2016-02-06 21:40:53 +01:00
|
|
|
#:use-module (guix download)
|
2018-08-16 04:31:44 +02:00
|
|
|
#:use-module (guix git-download)
|
2016-02-06 21:40:53 +01:00
|
|
|
#:use-module (guix packages)
|
2017-12-13 03:09:58 +01:00
|
|
|
#:use-module (guix utils)
|
2017-07-29 17:06:55 +02:00
|
|
|
#:use-module (gnu packages)
|
2016-02-06 21:40:53 +01:00
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module (gnu packages wxwidgets))
|
|
|
|
|
|
|
|
(define-public erlang
|
|
|
|
(package
|
|
|
|
(name "erlang")
|
2018-08-16 04:49:25 +02:00
|
|
|
(version "21.0.5")
|
2016-02-06 21:40:53 +01:00
|
|
|
(source (origin
|
2018-08-16 04:31:44 +02:00
|
|
|
(method git-fetch)
|
2016-02-06 21:40:53 +01:00
|
|
|
;; The tarball from http://erlang.org/download contains many
|
|
|
|
;; pre-compiled files, so we use this snapshot of the source
|
|
|
|
;; repository.
|
2018-08-16 04:31:44 +02:00
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/erlang/otp.git")
|
|
|
|
(commit (string-append "OTP-" version))))
|
|
|
|
(file-name (git-file-name name version))
|
2016-02-06 21:40:53 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-08-16 04:49:25 +02:00
|
|
|
"0gv83i5ybj1z3ykbbldjzf7dbfjszp84c0yzrpshj611b9wp0176"))
|
2017-07-29 17:06:55 +02:00
|
|
|
(patches (search-patches "erlang-man-path.patch"))))
|
2016-02-06 21:40:53 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("perl" ,perl)
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)
|
|
|
|
|
|
|
|
;; Erlang's documentation is distributed in a separate tarball.
|
|
|
|
("erlang-manpages"
|
|
|
|
,(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://erlang.org/download/otp_doc_man_"
|
2017-12-13 03:09:58 +01:00
|
|
|
(version-major+minor version) ".tar.gz"))
|
2016-02-06 21:40:53 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-07-16 11:58:02 +02:00
|
|
|
"0cgv23q0215f6lvmhj4w9skx5m29khjs9mb890635s3yp520xgqh"))))))
|
2016-02-06 21:40:53 +01:00
|
|
|
(inputs
|
|
|
|
`(("ncurses" ,ncurses)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("wxwidgets" ,wxwidgets)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("fontconfig" ,fontconfig)
|
|
|
|
("glu" ,glu)
|
|
|
|
("mesa" ,mesa)))
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "release_tests"
|
|
|
|
#:configure-flags
|
|
|
|
(list "--disable-saved-compile-time"
|
|
|
|
"--enable-dynamic-ssl-lib"
|
|
|
|
"--enable-native-libs"
|
|
|
|
"--enable-shared-zlib"
|
|
|
|
"--enable-smp-support"
|
|
|
|
"--enable-threads"
|
|
|
|
"--enable-wx"
|
|
|
|
(string-append "--with-ssl=" (assoc-ref %build-inputs "openssl")))
|
|
|
|
#:modules ((srfi srfi-19) ; make-time, et cetera.
|
|
|
|
(guix build utils)
|
|
|
|
(guix build gnu-build-system))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-06-12 08:41:45 +02:00
|
|
|
(delete 'bootstrap)
|
2016-02-06 21:40:53 +01:00
|
|
|
;; The are several code fragments that embed timestamps into the
|
|
|
|
;; output. Here, we alter those fragments to use the value of
|
|
|
|
;; SOURCE_DATE_EPOCH instead.
|
|
|
|
(add-after 'unpack 'remove-timestamps
|
|
|
|
(lambda _
|
|
|
|
(let ((source-date-epoch
|
2018-02-15 22:56:05 +01:00
|
|
|
(time-utc->date
|
|
|
|
(make-time time-utc 0 (string->number
|
|
|
|
(getenv "SOURCE_DATE_EPOCH"))))))
|
2016-02-06 21:40:53 +01:00
|
|
|
(substitute* "lib/reltool/src/reltool_target.erl"
|
|
|
|
(("Date = date\\(\\),")
|
|
|
|
(string-append "Date = "
|
|
|
|
(date->string source-date-epoch
|
|
|
|
"'{~Y,~m,~d}',"))))
|
|
|
|
(substitute* "lib/reltool/src/reltool_target.erl"
|
|
|
|
(("Time = time\\(\\),")
|
|
|
|
(string-append "Time = "
|
|
|
|
(date->string source-date-epoch
|
|
|
|
"'{~H,~M,~S}',"))))
|
|
|
|
(substitute* '("lib/reltool/src/reltool_target.erl"
|
|
|
|
"lib/sasl/src/systools_make.erl")
|
|
|
|
(("date\\(\\), time\\(\\),")
|
|
|
|
(date->string source-date-epoch
|
|
|
|
"{~Y,~m,~d}, {~H,~M,~S},")))
|
2017-07-31 01:19:15 +02:00
|
|
|
(substitute* "lib/dialyzer/test/small_SUITE_data/src/gs_make.erl"
|
2016-02-06 21:40:53 +01:00
|
|
|
(("tuple_to_list\\(date\\(\\)\\),tuple_to_list\\(time\\(\\)\\)")
|
|
|
|
(date->string
|
2018-02-15 22:56:05 +01:00
|
|
|
source-date-epoch
|
|
|
|
"tuple_to_list({~Y,~m,~d}), tuple_to_list({~H,~M,~S})")))
|
2016-02-06 21:40:53 +01:00
|
|
|
(substitute* "lib/snmp/src/compile/snmpc_mib_to_hrl.erl"
|
|
|
|
(("\\{Y,Mo,D\\} = date\\(\\),")
|
|
|
|
(date->string source-date-epoch
|
|
|
|
"{Y,Mo,D} = {~Y,~m,~d},")))
|
|
|
|
(substitute* "lib/snmp/src/compile/snmpc_mib_to_hrl.erl"
|
|
|
|
(("\\{H,Mi,S\\} = time\\(\\),")
|
|
|
|
(date->string source-date-epoch
|
2018-02-15 22:56:05 +01:00
|
|
|
"{H,Mi,S} = {~H,~M,~S},")))
|
|
|
|
#t)))
|
2018-06-01 15:29:24 +02:00
|
|
|
(add-after 'unpack 'patch-/bin/sh
|
|
|
|
(lambda _
|
|
|
|
(substitute* "erts/etc/unix/run_erl.c"
|
|
|
|
(("sh = \"/bin/sh\";")
|
|
|
|
(string-append "sh = \""
|
|
|
|
(which "sh")
|
|
|
|
"\";")))
|
|
|
|
|
|
|
|
(substitute* "erts/emulator/sys/unix/sys_drivers.c"
|
|
|
|
(("SHELL \"/bin/sh\"")
|
|
|
|
(string-append "SHELL \""
|
|
|
|
(which "sh")
|
|
|
|
"\"")))
|
|
|
|
(substitute* "erts/emulator/sys/unix/erl_child_setup.c"
|
|
|
|
(("SHELL \"/bin/sh\"")
|
|
|
|
(string-append "SHELL \""
|
|
|
|
(which "sh")
|
|
|
|
"\"")))
|
|
|
|
|
|
|
|
(substitute* "lib/kernel/src/os.erl"
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
|
|
|
|
#t))
|
2016-02-06 21:40:53 +01:00
|
|
|
(add-after 'patch-source-shebangs 'patch-source-env
|
|
|
|
(lambda _
|
|
|
|
(let ((escripts
|
|
|
|
(append
|
|
|
|
(find-files "." "\\.escript")
|
|
|
|
(find-files "lib/stdlib/test/escript_SUITE_data/")
|
|
|
|
'("erts/lib_src/utils/make_atomics_api"
|
|
|
|
"erts/preloaded/src/add_abstract_code"
|
|
|
|
"lib/diameter/bin/diameterc"
|
|
|
|
"lib/reltool/examples/display_args"
|
|
|
|
"lib/reltool/examples/mnesia_core_dump_viewer"
|
|
|
|
"lib/snmp/src/compile/snmpc.src"
|
|
|
|
"make/verify_runtime_dependencies"
|
|
|
|
"make/emd2exml.in"))))
|
|
|
|
(substitute* escripts
|
2018-02-15 22:56:05 +01:00
|
|
|
(("/usr/bin/env") (which "env")))
|
|
|
|
#t)))
|
2016-02-06 21:40:53 +01:00
|
|
|
(add-before 'configure 'set-erl-top
|
|
|
|
(lambda _
|
2018-02-15 22:56:05 +01:00
|
|
|
(setenv "ERL_TOP" (getcwd))
|
|
|
|
#t))
|
gnu: Put autoconf-related phases immediately after the 'unpack phase.
* gnu/packages/audio.scm (audacity, rtmidi)[arguments]: Correct phases
accordingly.
* gnu/packages/bioinformatics.scm (mash, seek, vsearch, emboss,
htslib-for-sambamba)[arguments]: Likewise.
* gnu/packages/ci.scm (cuirass)[arguments]: Likewise.
* gnu/packages/compression.scm (minizip, xdelta)[arguments]: Likewise.
* gnu/packages/cpp.scm (libzen)[arguments]: Likewise.
* gnu/packages/crypto.scm (opendht)[arguments]: Likewise.
* gnu/packages/databases.scm (4store, mdbtools)[arguments]: Likewise.
* gnu/packages/debug.scm (stress-make)[arguments]: Likewise.
* gnu/packages/dns.scm (dnscrypt-proxy, dnscrypt-wrapper)[arguments]:
Likewise.
* gnu/packages/emacs.scm (emacs-pdf-tools)[arguments]: Likewise.
* gnu/packages/embedded.scm (libjaylink, openocd)[arguments]: Likewise.
* gnu/packages/engineering.scm (gerbv)[arguments]: Likewise.
* gnu/packages/erlang.scm (erlang)[arguments]: Likewise.
* gnu/packages/ftp.scm (weex)[arguments]: Likewise.
* gnu/packages/gnome.scm (dia)[arguments]: Likewise.
* gnu/packages/gnunet.scm (gnurl, guile-gnunet)[arguments]: Likewise.
* gnu/packages/gtk.scm (guile-rsvg, graphene)[arguments]: Likewise.
* gnu/packages/guile.scm (guildhall, guile-ics, guile-sqlite3)[arguments]:
Likewise.
* gnu/packages/ibus.scm (ibus-libpinyin)[arguments]: Likewise.
* gnu/packages/irc.scm (weechat)[arguments]: Likewise.
* gnu/packages/java.scm (classpath-devel)[arguments]: Likewise.
* gnu/packages/libreoffice.scm (libetonyek)[arguments]: Likewise.
* gnu/packages/libusb.scm (hidapi)[arguments]: Likewise.
* gnu/packages/linux.scm (gpm)[arguments]: Likewise.
* gnu/packages/logging.scm (glog)[arguments]: Likewise.
* gnu/packages/machine-learning.scm (ghmm)[arguments]: Likewise.
* gnu/packages/mail.scm (dovecot-trees, dovecot-libsodium-plugin, esmtp)
[arguments]: Likewise.
* gnu/packages/messaging.scm (freetalk, libmesode, libstrophe)[arguments]:
Likewise.
* gnu/packages/microcom.scm (microcom)[arguments]: Likewise.
* gnu/packages/ocaml.scm (ocaml-ssl)[arguments]: Likewise.
* gnu/packages/parallel.scm (slurm)[arguments]: Likewise.
* gnu/packages/pdf.scm (libharu)[arguments]: Likewise.
* gnu/packages/samba.scm (cifs-utils)[arguments]: Likewise.
* gnu/packages/serialization.scm (msgpack)[arguments]: Likewise.
* gnu/packages/shells.scm (scsh)[arguments]: Likewise.
* gnu/packages/telephony.scm (libiax2)[arguments]: Likewise.
* gnu/packages/textutils.scm (dotconf)[arguments]: Likewise.
* gnu/packages/version-control.scm (findnewest)[arguments]: Likewise.
* gnu/packages/video.scm (libmediainfo, mediainfo)[arguments]: Likewise.
2017-07-31 03:02:35 +02:00
|
|
|
(add-after 'patch-source-env 'autoconf
|
2018-02-15 22:56:05 +01:00
|
|
|
(lambda _
|
|
|
|
(invoke "./otp_build" "autoconf")
|
|
|
|
#t))
|
2016-02-06 21:40:53 +01:00
|
|
|
(add-after 'install 'patch-erl
|
|
|
|
;; This only works after install.
|
2018-02-15 22:56:05 +01:00
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out")))
|
|
|
|
(substitute* (string-append out "/bin/erl")
|
|
|
|
(("sed") (which "sed")))
|
|
|
|
#t)))
|
2016-02-06 21:40:53 +01:00
|
|
|
(add-after 'install 'install-doc
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(manpages (assoc-ref inputs "erlang-manpages"))
|
|
|
|
(share (string-append out "/share/")))
|
2018-02-15 22:56:05 +01:00
|
|
|
(mkdir-p share)
|
|
|
|
(mkdir-p (string-append share "/misc/erlang"))
|
|
|
|
(with-directory-excursion share
|
|
|
|
(invoke "tar" "xvf" manpages)
|
2016-02-06 21:40:53 +01:00
|
|
|
(rename-file "COPYRIGHT"
|
|
|
|
(string-append share "/misc/erlang/COPYRIGHT"))
|
2017-05-06 12:59:25 +02:00
|
|
|
;; Delete superfluous file.
|
2018-02-15 22:56:05 +01:00
|
|
|
(delete-file "PR.template"))
|
|
|
|
#t))))))
|
2018-02-15 22:59:25 +01:00
|
|
|
(home-page "https://www.erlang.org/")
|
2016-02-06 21:40:53 +01:00
|
|
|
(synopsis "The Erlang programming language")
|
|
|
|
(description
|
|
|
|
"Erlang is a programming language used to build massively
|
|
|
|
scalable soft real-time systems with requirements on high
|
|
|
|
availability. Some of its uses are in telecoms, banking, e-commerce,
|
|
|
|
computer telephony and instant messaging. Erlang's runtime system has
|
|
|
|
built-in support for concurrency, distribution and fault tolerance.")
|
|
|
|
;; Erlang is distributed under the Apache License 2.0, but some components
|
|
|
|
;; have other licenses. See 'system/COPYRIGHT' in the source distribution.
|
|
|
|
(license (list license:asl2.0 license:bsd-2 license:bsd-3 license:expat
|
|
|
|
license:lgpl2.0+ license:tcl/tk license:zlib))))
|
2018-12-27 10:11:31 +01:00
|
|
|
|
|
|
|
(define-public emacs-erlang
|
|
|
|
(package
|
|
|
|
(name "emacs-erlang")
|
|
|
|
(version (package-version erlang))
|
|
|
|
(source (package-source erlang))
|
|
|
|
(build-system emacs-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'set-emacs-load-path 'change-working-directory
|
|
|
|
(lambda _ (chdir "lib/tools/emacs") #t)))))
|
|
|
|
(home-page "https://www.erlang.org/")
|
|
|
|
(synopsis "Erlang major mode for Emacs")
|
|
|
|
(description
|
|
|
|
"This package provides an Emacs major mode for editing Erlang source
|
|
|
|
files.")
|
|
|
|
(license license:asl2.0)))
|