2013-02-07 10:07:27 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2016-07-03 13:56:12 +02:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-08-24 22:58:44 +02:00
|
|
|
;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
|
|
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
|
2013-02-07 10:07:27 +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 smalltalk)
|
2016-08-30 11:25:13 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-02-07 10:07:27 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2016-08-24 22:58:44 +02:00
|
|
|
#:use-module (guix build-system cmake)
|
2013-02-07 10:07:27 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2016-08-24 22:58:44 +02:00
|
|
|
#:use-module (gnu packages audio)
|
2016-07-03 13:56:12 +02:00
|
|
|
#:use-module (gnu packages autotools)
|
2016-08-24 22:58:44 +02:00
|
|
|
#:use-module (gnu packages base)
|
gnu: Move contents of zip module into compression module.
* gnu/packages/zip.scm (zip, unzip, zziplib, perl-zip): Move to...
* gnu/packages/compression.scm: ...here.
* gnu/packages/zip.scm: Delete file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Unregister deleted file.
* po/packages/POTFILES.in: Unregister deleted file.
* gnu/packages/{audio, avr, bioinformatics, busybox, cdrom, ci, compression,
docbook, documentation, fonts, fpga, game-development, games, gl, gnome,
gnuzilla, graphics, guile, haskell, image, java, kodi, ldc, libreoffice,
markup, maths, mc, monitoring, music, php, pretty-print, python, scheme,
smalltalk, statistics, synergy, tex, textutils, video, web-browsers, xml,
zip}.scm, guix/build-system/{ant, font}.scm, guix/{download, packages}.scm:
Adapt module import.
2017-06-12 20:40:01 +02:00
|
|
|
#:use-module (gnu packages compression)
|
2016-08-24 22:58:44 +02:00
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
#:use-module (gnu packages glib)
|
2016-07-03 13:56:12 +02:00
|
|
|
#:use-module (gnu packages libffi)
|
|
|
|
#:use-module (gnu packages libsigsegv)
|
2016-08-24 22:58:44 +02:00
|
|
|
#:use-module (gnu packages linux)
|
2016-07-03 13:56:12 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2016-08-24 22:58:44 +02:00
|
|
|
#:use-module (gnu packages pulseaudio)
|
gnu: Move contents of zip module into compression module.
* gnu/packages/zip.scm (zip, unzip, zziplib, perl-zip): Move to...
* gnu/packages/compression.scm: ...here.
* gnu/packages/zip.scm: Delete file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Unregister deleted file.
* po/packages/POTFILES.in: Unregister deleted file.
* gnu/packages/{audio, avr, bioinformatics, busybox, cdrom, ci, compression,
docbook, documentation, fonts, fpga, game-development, games, gl, gnome,
gnuzilla, graphics, guile, haskell, image, java, kodi, ldc, libreoffice,
markup, maths, mc, monitoring, music, php, pretty-print, python, scheme,
smalltalk, statistics, synergy, tex, textutils, video, web-browsers, xml,
zip}.scm, guix/build-system/{ant, font}.scm, guix/{download, packages}.scm:
Adapt module import.
2017-06-12 20:40:01 +02:00
|
|
|
#:use-module (gnu packages xorg))
|
2013-02-07 10:07:27 +01:00
|
|
|
|
|
|
|
(define-public smalltalk
|
|
|
|
(package
|
|
|
|
(name "smalltalk")
|
2013-04-22 04:52:35 +02:00
|
|
|
(version "3.2.5")
|
2013-02-07 10:07:27 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/smalltalk/smalltalk-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-04-22 04:52:35 +02:00
|
|
|
"1k2ssrapfzhngc7bg1zrnd9n2vyxp9c9m70byvsma6wapbvib6l1"))))
|
2013-02-07 10:07:27 +01:00
|
|
|
(build-system gnu-build-system)
|
2016-07-03 13:56:12 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("libffi" ,libffi)
|
|
|
|
("libltdl" ,libltdl)
|
|
|
|
("libsigsegv" ,libsigsegv)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("zip" ,zip)))
|
2013-02-07 10:07:27 +01:00
|
|
|
(arguments
|
|
|
|
`(#:phases (alist-cons-before
|
|
|
|
'configure 'fix-libc
|
|
|
|
(lambda _
|
|
|
|
(let ((libc (assoc-ref %build-inputs "libc")))
|
|
|
|
(substitute* "libc.la.in"
|
|
|
|
(("@LIBC_SO_NAME@") "libc.so")
|
|
|
|
(("@LIBC_SO_DIR@") (string-append libc "/lib")))))
|
|
|
|
%standard-phases)))
|
2016-07-03 13:56:12 +02:00
|
|
|
(home-page "http://smalltalk.gnu.org/")
|
gnu: Use synopses from the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/gawk.scm,
gnu/packages/gcc.scm,
packages/gcc.scm, b/gnu/packages/gcc.scm,
4b982 100644
s/gcc.scm,
s/gcc.scm,
@@
%standard-phases)))))
`((gcc-libc . ,(assoc-ref inputs "libc"))))
The GNU Compiler Collection")
GNU Compiler Collection")
n
ompiler Collection includes compiler front ends for C, C++,
tran, OpenMP for C/C++/Fortran, Java, and Ada, as well as
gnu/packages/gdb.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/glib.scm,
gnu/packages/global.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mailutils.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm: Use synopses from the Womb.
2013-04-17 18:04:25 +02:00
|
|
|
(synopsis "Smalltalk environment")
|
2013-02-07 10:07:27 +01:00
|
|
|
(description
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 16:14:23 +02:00
|
|
|
"GNU Smalltalk is a free implementation of the Smalltalk language. It
|
|
|
|
implements the ANSI standard for the language and also includes extra classes
|
|
|
|
such as ones for networking and GUI programming.")
|
2016-08-30 11:25:13 +02:00
|
|
|
(license license:gpl2+)))
|
2016-08-24 22:58:44 +02:00
|
|
|
|
|
|
|
(define-public squeak-vm
|
|
|
|
(package
|
|
|
|
(name "squeak-vm")
|
|
|
|
(version "4.10.2.2614")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.squeakvm.org/unix/release/"
|
|
|
|
"Squeak-" version "-src.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-08-30 12:00:52 +02:00
|
|
|
"0bpwbnpy2sb4gylchfx50sha70z36bwgdxraym4vrr93l8pd3dix"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Make builds bit-reproducible.
|
|
|
|
'(begin
|
|
|
|
(substitute* "unix/cmake/verstamp"
|
|
|
|
(("vm_date=.*")
|
|
|
|
"vm_date = \"1970-01-01\";\n")
|
|
|
|
(("ux_version=.*")
|
|
|
|
"ux_version = \"GNU\";\n"))
|
|
|
|
(substitute* "unix/vm/config.cmake"
|
|
|
|
(("\\(VM_BUILD_STRING.*")
|
|
|
|
"(VM_BUILD_STRING \\\"Built with GNU Guix\\\")"))))))
|
2016-08-24 22:58:44 +02:00
|
|
|
(inputs
|
|
|
|
`(("alsa-lib" ,alsa-lib)
|
|
|
|
("dbus" ,dbus)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("libffi" ,libffi)
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
("mesa" ,mesa)
|
|
|
|
("pulseaudio" ,pulseaudio)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ;no check target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'remove-hardcoded-PATH
|
|
|
|
(lambda _
|
|
|
|
;; Remove hard-coded FHS PATH entries.
|
|
|
|
(substitute* '("unix/cmake/squeak.in"
|
|
|
|
"unix/cmake/squeak.sh.in")
|
|
|
|
(("^PATH=.*") ""))
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'create-build-dir
|
|
|
|
(lambda _
|
|
|
|
(mkdir "bld")
|
|
|
|
#t))
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(with-directory-excursion "bld"
|
|
|
|
(zero?
|
|
|
|
(system* "../unix/cmake/configure"
|
|
|
|
(string-append "--prefix=" out)
|
|
|
|
"--without-quartz"))))))
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
(with-directory-excursion "bld"
|
|
|
|
(zero? (system* "make"))))))))
|
|
|
|
(synopsis "Smalltalk programming language and environment")
|
|
|
|
(description "Squeak is a full-featured implementation of the Smalltalk
|
|
|
|
programming language and environment based on (and largely compatible with)
|
|
|
|
the original Smalltalk-80 system. Squeak has very powerful 2- and 3-D
|
|
|
|
graphics, sound, video, MIDI, animation and other multimedia capabilities. It
|
|
|
|
also includes a customisable framework for creating dynamic HTTP servers and
|
|
|
|
interactively extensible Web sites.")
|
|
|
|
(home-page "http://www.squeakvm.org")
|
|
|
|
(license license:x11)))
|