Merge pull request #186982 from kira-bruneau/newsflash
newsflash: fix adding xdg-open to PATH
This commit is contained in:
commit
dd3295ed20
@ -15,8 +15,8 @@
|
||||
, webkitgtk
|
||||
, glib-networking
|
||||
, librsvg
|
||||
, xdg-utils
|
||||
, gst_all_1
|
||||
, xdg-utils
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -78,9 +78,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
# SVG support for gdk-pixbuf
|
||||
librsvg
|
||||
|
||||
# Open links in browser
|
||||
xdg-utils
|
||||
] ++ (with gst_all_1; [
|
||||
# Audio & video support for webkitgtk WebView
|
||||
gstreamer
|
||||
@ -89,6 +86,13 @@ stdenv.mkDerivation rec {
|
||||
gst-plugins-bad
|
||||
]);
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(--suffix PATH : "${lib.makeBinPath [
|
||||
# Open links in browser
|
||||
xdg-utils
|
||||
]}")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A modern feed reader designed for the GNOME desktop";
|
||||
homepage = "https://gitlab.com/news-flash/news_flash_gtk";
|
||||
|
Loading…
Reference in New Issue
Block a user