mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: boinc-server: Fix build.
* gnu/packages/distributed.scm (boinc-server)[inputs]: Replace openssl with openssl-1.0, mariadb with mariadb:dev.
This commit is contained in:
parent
260eae7893
commit
f87d594238
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Brant Gardner <brantcgardner@brantware.com>
|
;;; Copyright © 2019 Brant Gardner <brantcgardner@brantware.com>
|
||||||
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -88,9 +89,9 @@ (define-public boinc-server
|
||||||
#:tests? #f)) ; FIXME: Looks like bad test syntax in the
|
#:tests? #f)) ; FIXME: Looks like bad test syntax in the
|
||||||
; source package, 2 tests fail. Disable for
|
; source package, 2 tests fail. Disable for
|
||||||
; now.
|
; now.
|
||||||
(inputs `(("openssl" ,openssl)
|
(inputs `(("openssl" ,openssl-1.0)
|
||||||
("curl" ,curl)
|
("curl" ,curl)
|
||||||
("mariadb" ,mariadb)
|
("mariadb:dev" ,mariadb "dev")
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(propagated-inputs `(("python" ,python-wrapper)
|
(propagated-inputs `(("python" ,python-wrapper)
|
||||||
("perl" ,perl)))))
|
("perl" ,perl)))))
|
||||||
|
|
Loading…
Reference in a new issue