This is an automated email from the git hooks/post-receive script.

sharlatan pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new dc2df5b869 gnu: librewolf: Add %u to Exec option to open URLs.
dc2df5b869 is described below

commit dc2df5b86942e70c4d9f24533f6609153e9b2889
Author: Roman Scherer <ro...@burningswell.com>
AuthorDate: Mon Dec 2 13:20:20 2024 +0100

    gnu: librewolf: Add %u to Exec option to open URLs.
    
    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 <nan...@riseup.net>
    Reviewed-by: Ian Eure <i...@retrospec.tv>
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 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@")

Reply via email to