mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libblockdev: Allow building on riscv64-linux.
* gnu/packages/disk.scm (libblockdev)[inputs]: Only add multipath-tools on systems which are supported. Change-Id: Ie79a78bfdf0147589494a0a1a39e4ff45fefbbee
This commit is contained in:
parent
adeb7e4d1f
commit
71122981cb
1 changed files with 4 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
;;; Copyright © 2015 Mathieu Lirzin <mthl@gnu.org>
|
;;; Copyright © 2015 Mathieu Lirzin <mthl@gnu.org>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016, 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016, 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2016, 2019-2021, 2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2019-2021, 2023, 2025 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2016, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
||||||
;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
|
@ -1249,6 +1249,9 @@ to create devices with respective mappings for the ATARAID sets discovered.")
|
||||||
(inputs
|
(inputs
|
||||||
(append
|
(append
|
||||||
(cons cryptsetup (libcryptsetup-propagated-inputs))
|
(cons cryptsetup (libcryptsetup-propagated-inputs))
|
||||||
|
(if (supported-package? multipath-tools)
|
||||||
|
(list multipath-tools)
|
||||||
|
'())
|
||||||
(list bcache-tools
|
(list bcache-tools
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
dosfstools
|
dosfstools
|
||||||
|
@ -1264,7 +1267,6 @@ to create devices with respective mappings for the ATARAID sets discovered.")
|
||||||
libyaml
|
libyaml
|
||||||
lvm2
|
lvm2
|
||||||
mdadm
|
mdadm
|
||||||
multipath-tools
|
|
||||||
ndctl
|
ndctl
|
||||||
nss
|
nss
|
||||||
ntfs-3g
|
ntfs-3g
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue