mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: smalltalk: Don't use bundled libraries.
* gnu/packages/smalltalk.scm (smalltalk)[native-inputs]: Add libffi, libltdl, libsigsegv, pkg-config. [home-page]: Update to new home-page.
This commit is contained in:
parent
569d9efe3a
commit
0c9df45755
1 changed files with 13 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -21,6 +22,10 @@ (define-module (gnu packages smalltalk)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
|
#:use-module (gnu packages libffi)
|
||||||
|
#:use-module (gnu packages libsigsegv)
|
||||||
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages zip))
|
#:use-module (gnu packages zip))
|
||||||
|
|
||||||
(define-public smalltalk
|
(define-public smalltalk
|
||||||
|
@ -36,7 +41,13 @@ (define-public smalltalk
|
||||||
(base32
|
(base32
|
||||||
"1k2ssrapfzhngc7bg1zrnd9n2vyxp9c9m70byvsma6wapbvib6l1"))))
|
"1k2ssrapfzhngc7bg1zrnd9n2vyxp9c9m70byvsma6wapbvib6l1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("zip" ,zip)))
|
(native-inputs
|
||||||
|
`(("libffi" ,libffi)
|
||||||
|
("libltdl" ,libltdl)
|
||||||
|
("libsigsegv" ,libsigsegv)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("zip" ,zip)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (alist-cons-before
|
`(#:phases (alist-cons-before
|
||||||
'configure 'fix-libc
|
'configure 'fix-libc
|
||||||
|
@ -46,7 +57,7 @@ (define-public smalltalk
|
||||||
(("@LIBC_SO_NAME@") "libc.so")
|
(("@LIBC_SO_NAME@") "libc.so")
|
||||||
(("@LIBC_SO_DIR@") (string-append libc "/lib")))))
|
(("@LIBC_SO_DIR@") (string-append libc "/lib")))))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(home-page "https://www.gnu.org/software/smalltalk/")
|
(home-page "http://smalltalk.gnu.org/")
|
||||||
(synopsis "Smalltalk environment")
|
(synopsis "Smalltalk environment")
|
||||||
(description
|
(description
|
||||||
"GNU Smalltalk is a free implementation of the Smalltalk language. It
|
"GNU Smalltalk is a free implementation of the Smalltalk language. It
|
||||||
|
|
Loading…
Reference in a new issue