From 2c957cd2441ec8a49aaf2dc8a8201a46e5000bea Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 22 Aug 2012 17:24:38 +0200 Subject: distro: Add GNU Coreutils. * distro/base.scm (coreutils): New variable. --- distro/base.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'distro/base.scm') diff --git a/distro/base.scm b/distro/base.scm index c945205b72..e799161512 100644 --- a/distro/base.scm +++ b/distro/base.scm @@ -342,6 +342,35 @@ The tools supplied with this package are: (license "GPLv3+") (home-page "http://www.gnu.org/software/findutils/"))) +(define-public coreutils + (package + (name "coreutils") + (version "8.19") + (source (origin + (method http-fetch) + (uri (string-append "http://ftp.gnu.org/gnu/coreutils/coreutils-" + version ".tar.xz")) + (sha256 + (base32 + "1rx9x3fp848w4nny7irdkcpkan9fcx24d99v5dkwgkyq7wc76f5d")))) + (build-system gnu-build-system) + (inputs `()) ; TODO: optional deps: SELinux, ACL, GMP + (arguments + '(;; In the chroot, `./configure' thinks it's running as root. + #:configure-flags '("FORCE_UNSAFE_CONFIGURE=1") + + ;; Perl is missing, and some tests are failing. + #:tests? #f)) + (description + "The basic file, shell and text manipulation utilities of the GNU +operating system") + (long-description + "The GNU Core Utilities are the basic file, shell and text manipulation +utilities of the GNU operating system. These are the core utilities which +are expected to exist on every operating system.") + (license "GPLv3+") + (home-page "http://www.gnu.org/software/coreutils/"))) + (define-public m4 (package (name "m4") -- cgit v1.2.3