mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cdrkit-libre: Fix build with gcc-14.
* gnu/packages/cdrom.scm (cdrkit-libre)[arguments]: Use G-Expressions. Add #:configure-flags to relax gcc-14's strictness. Change-Id: I20e03152dcc31f0803593ad74db5e94048acd41a
This commit is contained in:
parent
20d0eb4c65
commit
914df23f5e
1 changed files with 12 additions and 11 deletions
|
@ -18,7 +18,7 @@
|
|||
;;; Copyright © 2024 Julian Flake <flake@uni-koblenz.de>
|
||||
;;; Copyright © 2025 Yovan Naumovski <yovan@gorski.stream>
|
||||
;;; Copyright © 2025 André Batista <nandre@riseup.net>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2024, 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1046,16 +1046,17 @@ It supports read-only media (DVD/CD-R) and rewritable media that wears out
|
|||
(inputs
|
||||
(list bzip2 libcap perl zlib))
|
||||
(arguments
|
||||
`(#:tests? #f ;no tests
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'old-cdrecord
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(with-directory-excursion (string-append (assoc-ref outputs "out")
|
||||
"/bin")
|
||||
(symlink "genisoimage" "mkisofs")
|
||||
(symlink "wodim" "cdrecord"))
|
||||
#t)))))
|
||||
(list
|
||||
#:tests? #f ;no tests
|
||||
#:configure-flags
|
||||
#~(list "-DCMAKE_C_FLAGS=-Wno-error=implicit-function-declaration")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'old-cdrecord
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(with-directory-excursion (string-append #$output "/bin")
|
||||
(symlink "genisoimage" "mkisofs")
|
||||
(symlink "wodim" "cdrecord")))))))
|
||||
(home-page "https://repo.parabola.nu/other/cdrkit-libre/")
|
||||
(synopsis "Command-line CD/DVD recorder")
|
||||
(description "Cdrkit is a suite of programs for recording CDs and DVDs,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue