gnu: icedove-wayland: Use icedove-minimal instead of icedove.

`icedove` does currently not built.

* gnu/packages/gnuzilla.scm (icedove-wayland): Use `icedove-minimal` instead of
`icedove`.

Change-Id: Idc01d6a93071cff11ef139e6738aff1c7687d975
This commit is contained in:
Jonathan Brielmaier 2024-04-28 21:36:51 +02:00
parent fa5929cd3f
commit e20abffb2b
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -1787,7 +1787,7 @@ (define-public icedove
(define-public icedove/wayland
(package
(inherit icedove)
(inherit icedove-minimal)
(name "icedove-wayland")
(build-system trivial-build-system)
(arguments
@ -1803,14 +1803,14 @@ (define-public icedove/wayland
(format port "#!~a
MOZ_ENABLE_WAYLAND=1 exec ~a \"$@\""
#$(file-append bash-minimal "/bin/bash")
#$(file-append icedove "/bin/icedove"))))
#$(file-append icedove-minimal "/bin/icedove"))))
(chmod exe #o555)
;; Provide the manual and .desktop file.
(copy-recursively (string-append #$icedove "/share")
(copy-recursively (string-append #$icedove-minimal "/share")
(string-append #$output "/share"))
(substitute* (string-append #$output
"/share/applications/icedove.desktop")
((#$icedove) #$output))))))
((#$icedove-minimal) #$output))))))
(native-inputs '())
(inputs '())))