mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
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.
This commit is contained in:
parent
8572bf5e0c
commit
ee26820636
2 changed files with 8 additions and 17 deletions
|
@ -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")
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue