From bc37a36ca748aa81f5aa86bf5435e2ea22705d86 Mon Sep 17 00:00:00 2001 From: Nikita Karetnikov Date: Mon, 31 Dec 2012 04:43:30 +0000 Subject: [PATCH] distro: coreutils: Add 'acl', 'gmp', and 'perl' to 'inputs'. * distro/packages/base.scm: Import 'acl'. (coreutils): Add 'acl', 'gmp', and 'perl'. --- distro/packages/base.scm | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/distro/packages/base.scm b/distro/packages/base.scm index 0289b6c..070363d 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -20,6 +20,7 @@ (define-module (distro packages base) #:use-module (guix licenses) #:use-module (distro) + #:use-module (distro packages acl) #:use-module (distro packages bash) #:use-module (distro packages bootstrap) #:use-module (distro packages compression) @@ -261,10 +262,9 @@ The tools supplied with this package are: (base32 "1cly97xdy3v4nbbx631k43smqw0nnpn651kkprs0yyl2cj3pkjyv")))) (build-system gnu-build-system) - (inputs `()) ; TODO: optional deps: SELinux, ACL, GMP - (arguments - '(;; Perl is missing, and some tests are failing. - #:tests? #f)) + (inputs `(("acl" ,acl) + ("gmp" ,gmp) + ("perl" ,perl))) ; TODO: add SELinux (synopsis "The basic file, shell and text manipulation utilities of the GNU operating system") -- 1.7.5.4