mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 16:57:55 +01:00
gnu: heimdal: Fix inputs when cross-compiling.
* gnu/packages/kerberos.scm (heimdal)[inputs]: Add "bash-minimal" when cross-compiling. (heimdal)[native-inputs]: Add 'perl' when cross-compiling.
This commit is contained in:
parent
c170e9b75f
commit
de8ea8e827
1 changed files with 10 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -30,6 +31,7 @@
|
||||||
(define-module (gnu packages kerberos)
|
(define-module (gnu packages kerberos)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages dbm)
|
#:use-module (gnu packages dbm)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
|
@ -244,8 +246,15 @@ (define-public heimdal
|
||||||
#:parallel-tests? #f))
|
#:parallel-tests? #f))
|
||||||
(native-inputs `(("e2fsprogs" ,e2fsprogs) ;for 'compile_et'
|
(native-inputs `(("e2fsprogs" ,e2fsprogs) ;for 'compile_et'
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("unzip" ,unzip))) ;for tests
|
("unzip" ,unzip) ;for tests
|
||||||
|
,@(if (%current-target-system)
|
||||||
|
`(("perl" ,perl))
|
||||||
|
'())))
|
||||||
(inputs `(("readline" ,readline)
|
(inputs `(("readline" ,readline)
|
||||||
|
;; TODO(core-updates): Make this input unconditional.
|
||||||
|
,@(if (%current-target-system)
|
||||||
|
`(("bash-minimal" ,bash-minimal))
|
||||||
|
'())
|
||||||
("bdb" ,bdb)
|
("bdb" ,bdb)
|
||||||
("e2fsprogs" ,e2fsprogs) ;for libcom_err
|
("e2fsprogs" ,e2fsprogs) ;for libcom_err
|
||||||
("sqlite" ,sqlite)))
|
("sqlite" ,sqlite)))
|
||||||
|
|
Loading…
Reference in a new issue