aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/smalltalk.scm
blob: c9d733d5056c63335b59958ef82f49eb00454db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
;;;
;;; 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)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages zip))

(define-public smalltalk
  (package
    (name "smalltalk")
    (version "3.2.5")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/smalltalk/smalltalk-"
                          version ".tar.xz"))
      (sha256
       (base32
        "1k2ssrapfzhngc7bg1zrnd9n2vyxp9c9m70byvsma6wapbvib6l1"))))
    (build-system gnu-build-system)
    (inputs `(("zip" ,zip)))
    (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)))
    (home-page "https://www.gnu.org/software/smalltalk/")
    (synopsis "Smalltalk environment")
    (description
     "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.")
    (license gpl2+)))
Leo Famulari 2017-07-06gnu: bash-completion: Update to 2.6.Tobias Geerinckx-Rice 2017-06-02gnu: bash-minimal: Simplify 'arguments' field.Ludovic Courtès 2017-05-30gnu: bash-minimal: Override keywords from 'bash'.Sergei Trofimovich 2017-03-30Merge branch 'master' into core-updatesMarius Bakke 2017-03-30gnu: Use HTTPS for almost all gnu.org HOME-PAGEs.Tobias Geerinckx-Rice 2017-03-09Merge branch 'master' into core-updatesLudovic Courtès 2017-03-07gnu: bash: Use the bootstrap Guile in 'url-fetch/reset-patch-level'.Ludovic Courtès 2017-02-22gnu: bash-completion: Update to 2.5.Marius Bakke 2017-02-20gnu: bash: Update to patch level 12.Efraim Flashner 2017-02-10gnu: bash: Remove graft for CVE-2017-5932.Ludovic Courtès 2017-02-10Merge branch 'master' into core-updatesLudovic Courtès 2017-02-10gnu: bash: Add graft for patch #7 [fixes CVE-2017-5932].Ludovic Courtès 2017-02-10gnu: bash: Update patch URL to 4.4.Ludovic Courtès 2017-02-09gnu: bash-minimal: Assume getcwd works correctly when cross-compilingCarlos Sánchez de La Lama 2017-02-09gnu: bash-minimal: Assume getcwd works correctly when cross-compilingCarlos Sánchez de La Lama 2017-01-27gnu: bash: Do not retain dependency on Coreutils.Ludovic Courtès 2017-01-21gnu: bash: Update to patch level 11.Leo Famulari 2016-11-27gnu: bash: Update to patch level 5.Efraim Flashner 2016-10-13gnu: bash-minimal: Remove "include" output.Ludovic Courtès 2016-10-12Merge branch 'master' into core-updatesMark H Weaver 2016-10-10gnu: bash-completion: Update to 2.4.Efraim Flashner 2016-10-02gnu: bash-minimal: Remove 'move-development-files' phase.Ludovic Courtès 2016-10-01gnu: bash-minimal: Disable loadable module support.Ludovic Courtès 2016-10-01gnu: bash: Update to 4.4.Ludovic Courtès 2016-10-01gnu: bash-static: Use 'modify-phases'.Ludovic Courtès