diff --git a/gnu/packages/acl.scm b/gnu/packages/acl.scm index b7604dcea6f73ffbea1bf49717226446e5cc1e55..dde9ac4f343261c41899e8d47e7c6b07051e4eb6 100644 --- a/gnu/packages/acl.scm +++ b/gnu/packages/acl.scm @@ -60,14 +60,9 @@ (define-public acl ;; Perl is needed to run tests; remove it from cross builds. ,@(if (%current-target-system) '() - `(("gettext" ,guix:gettext) - ("perl" ,perl))))) + `(("perl" ,perl))))) (native-inputs - ;; FIXME: Upon next core-updates, make gettext a native input - ;; unconditionally. - (if (%current-target-system) - `(("gettext" ,guix:gettext)) - '())) + `(("gettext" ,guix:gettext))) (home-page "http://savannah.nongnu.org/projects/acl") diff --git a/gnu/packages/attr.scm b/gnu/packages/attr.scm index 2ce50296ac3b7ef0807bbdbf93dccee35fa5e721..3108a9072ab8e0b49082df8741a1f2916cc45ad7 100644 --- a/gnu/packages/attr.scm +++ b/gnu/packages/attr.scm @@ -69,17 +69,13 @@ (define-public attr ;; dependent on the underlying file system. #t) %standard-phases)))))) - (inputs `(;; Perl is needed to run tests; remove it from cross builds. - ,@(if (%current-target-system) - '() - `(("perl" ,perl) - ("gettext" ,guix:gettext))))) - (native-inputs - ;; FIXME: Upon next core-updates, make gettext a native input - ;; unconditionally. + (inputs + ;; Perl is needed to run tests; remove it from cross builds. (if (%current-target-system) - `(("gettext" ,guix:gettext)) - '())) + '() + `(("perl" ,perl)))) + (native-inputs + `(("gettext" ,guix:gettext))) (home-page "http://savannah.nongnu.org/projects/attr/") (synopsis "Library and tools for manipulating extended attributes")