From dc2df5b86942e70c4d9f24533f6609153e9b2889 Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Mon, 2 Dec 2024 13:20:20 +0100 Subject: gnu: librewolf: Add %u to Exec option to open URLs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The context behind this change is that Firefox used to ship a taskcluster/docker/firefox-snap/firefox.desktop file which had an Exec line like this: Exec=@MOZ_APP_NAME@ %u The Guix package would use that file, replacing the token with the path to the binary. Reported in #74648. * gnu/packages/librewolf.scm (librewolf): Add %u to Exec option to open URLs. Change-Id: I8cf5d3886eaf7805209cf12eae0cc875bef6d5dd Reviewed-by: André Batista Reviewed-by: Ian Eure Signed-off-by: Sharlatan Hellseher --- gnu/packages/librewolf.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index 5d432cfad8..42d212e9f9 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm @@ -605,7 +605,7 @@ (substitute* desktop-file (("^Exec=@MOZ_APP_NAME@") (string-append "Exec=" - #$output "/bin/librewolf")) + #$output "/bin/librewolf %u")) (("@MOZ_APP_DISPLAYNAME@") "LibreWolf") (("@MOZ_APP_REMOTINGNAME@") -- cgit v1.2.3