[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/36: gnu: brasero: Embed growisofs from dvd+rw-tools input.
From: |
guix-commits |
Subject: |
35/36: gnu: brasero: Embed growisofs from dvd+rw-tools input. |
Date: |
Mon, 4 Oct 2021 07:44:06 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 0cdc984147b45399199336511fe2e1118f2b7599
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Oct 4 05:04:17 2021 +0200
gnu: brasero: Embed growisofs from dvd+rw-tools input.
* gnu/packages/gnome.scm (brasero)[arguments]: Rename the
'embed-growisofs phase to 'embed-growisofs-reference. Get its
growisofs file name from the dvd+rw-tools input, not WHICH.
---
gnu/packages/gnome.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a8eb41c..18c6018 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -300,11 +300,12 @@
"/lib/girepository-1.0"))
#:phases
(modify-phases %standard-phases
- (add-before 'configure 'embed-growisofs
+ (add-before 'configure 'embed-growisofs-reference
(lambda* (#:key inputs #:allow-other-keys)
- (substitute* "plugins/growisofs/burn-growisofs.c"
- (("\"growisofs") (string-append "\"" (which "growisofs"))))
- #t)))))
+ (let ((dvd+rw-tools (assoc-ref inputs "dvd+rw-tools")))
+ (substitute* "plugins/growisofs/burn-growisofs.c"
+ (("(\")(growisofs)" _ prefix command)
+ (string-append prefix dvd+rw-tools "/bin/" command)))))))))
(propagated-inputs
`(("hicolor-icon-theme" ,hicolor-icon-theme)))
(native-inputs
- 32/36: gnu: haveged: Don't build the static library., (continued)
- 32/36: gnu: haveged: Don't build the static library., guix-commits, 2021/10/04
- 16/36: gnu: cawbird: Update to 1.4.2., guix-commits, 2021/10/04
- 27/36: gnu: btrfs-progs: Update to 5.14.1., guix-commits, 2021/10/04
- 19/36: gnu: cifs-utils: Build & install man pages., guix-commits, 2021/10/04
- 21/36: gnu: cifs-utils: Fix support for dropping capabilities., guix-commits, 2021/10/04
- 29/36: gnu: squid: Update to 4.16., guix-commits, 2021/10/04
- 17/36: gnu: openssh: Update to 8.8p1 [security fixes]., guix-commits, 2021/10/04
- 31/36: gnu: haveged: Update to 1.9.15., guix-commits, 2021/10/04
- 36/36: doc: Fix 'setuid-program' example., guix-commits, 2021/10/04
- 34/36: gnu: brasero: Update to 3.12.3., guix-commits, 2021/10/04
- 35/36: gnu: brasero: Embed growisofs from dvd+rw-tools input.,
guix-commits <=