Skip to content
Snippets Groups Projects
Commit ee268206 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: acl, attr: Make `gettext' a native input.

* gnu/packages/acl.scm (acl): Make `gettext' a native input, always.
* gnu/packages/attr.scm (attr): Likewise.
parent 8572bf5e
No related branches found
No related tags found
No related merge requests found
...@@ -60,14 +60,9 @@ (define-public acl ...@@ -60,14 +60,9 @@ (define-public acl
;; Perl is needed to run tests; remove it from cross builds. ;; Perl is needed to run tests; remove it from cross builds.
,@(if (%current-target-system) ,@(if (%current-target-system)
'() '()
`(("gettext" ,guix:gettext) `(("perl" ,perl)))))
("perl" ,perl)))))
(native-inputs (native-inputs
;; FIXME: Upon next core-updates, make gettext a native input `(("gettext" ,guix:gettext)))
;; unconditionally.
(if (%current-target-system)
`(("gettext" ,guix:gettext))
'()))
(home-page (home-page
"http://savannah.nongnu.org/projects/acl") "http://savannah.nongnu.org/projects/acl")
......
...@@ -69,17 +69,13 @@ (define-public attr ...@@ -69,17 +69,13 @@ (define-public attr
;; dependent on the underlying file system. ;; dependent on the underlying file system.
#t) #t)
%standard-phases)))))) %standard-phases))))))
(inputs `(;; Perl is needed to run tests; remove it from cross builds. (inputs
,@(if (%current-target-system) ;; Perl is needed to run tests; remove it from cross builds.
'()
`(("perl" ,perl)
("gettext" ,guix:gettext)))))
(native-inputs
;; FIXME: Upon next core-updates, make gettext a native input
;; unconditionally.
(if (%current-target-system) (if (%current-target-system)
`(("gettext" ,guix:gettext)) '()
'())) `(("perl" ,perl))))
(native-inputs
`(("gettext" ,guix:gettext)))
(home-page "http://savannah.nongnu.org/projects/attr/") (home-page "http://savannah.nongnu.org/projects/attr/")
(synopsis "Library and tools for manipulating extended attributes") (synopsis "Library and tools for manipulating extended attributes")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment