summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/feedreaders
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2024-06-01 12:39:41 -0400
committerKira Bruneau <kira.bruneau@pm.me>2024-06-01 12:39:41 -0400
commit57d66ec0c8ae79388ce224eb670a19d92983f2a9 (patch)
tree73af9c5d2143cd2d494600d21fe0433c19362440 /pkgs/applications/networking/feedreaders
parenta92a38b08e745d9ac34b44a99f9fb1f745b92ab3 (diff)
newsflash: format with nixfmt-rfc-style
Diffstat (limited to 'pkgs/applications/networking/feedreaders')
-rw-r--r--pkgs/applications/networking/feedreaders/newsflash/default.nix100
1 files changed, 52 insertions, 48 deletions
diff --git a/pkgs/applications/networking/feedreaders/newsflash/default.nix b/pkgs/applications/networking/feedreaders/newsflash/default.nix
index a89b775cc5b6..f8fcea67a489 100644
--- a/pkgs/applications/networking/feedreaders/newsflash/default.nix
+++ b/pkgs/applications/networking/feedreaders/newsflash/default.nix
@@ -1,28 +1,29 @@
-{ lib
-, stdenv
-, rustPlatform
-, fetchFromGitLab
-, substituteAll
-, cargo
-, meson
-, ninja
-, pkg-config
-, rustc
-, blueprint-compiler
-, wrapGAppsHook4
-, gdk-pixbuf
-, glib
-, clapper
-, gtk4
-, libadwaita
-, libxml2
-, openssl
-, sqlite
-, webkitgtk
-, glib-networking
-, librsvg
-, gst_all_1
-, gitUpdater
+{
+ lib,
+ stdenv,
+ rustPlatform,
+ fetchFromGitLab,
+ substituteAll,
+ cargo,
+ meson,
+ ninja,
+ pkg-config,
+ rustc,
+ blueprint-compiler,
+ wrapGAppsHook4,
+ gdk-pixbuf,
+ glib,
+ clapper,
+ gtk4,
+ libadwaita,
+ libxml2,
+ openssl,
+ sqlite,
+ webkitgtk,
+ glib-networking,
+ librsvg,
+ gst_all_1,
+ gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -83,37 +84,40 @@ stdenv.mkDerivation (finalAttrs: {
blueprint-compiler
];
- buildInputs = [
- clapper
- gtk4
- libadwaita
- libxml2
- openssl
- sqlite
- webkitgtk
+ buildInputs =
+ [
+ clapper
+ gtk4
+ libadwaita
+ libxml2
+ openssl
+ sqlite
+ webkitgtk
- # TLS support for loading external content in webkitgtk WebView
- glib-networking
+ # TLS support for loading external content in webkitgtk WebView
+ glib-networking
- # SVG support for gdk-pixbuf
- librsvg
- ] ++ (with gst_all_1; [
- # Audio & video support for webkitgtk WebView
- gstreamer
- gst-plugins-base
- gst-plugins-good
- gst-plugins-bad
- ]);
+ # SVG support for gdk-pixbuf
+ librsvg
+ ]
+ ++ (with gst_all_1; [
+ # Audio & video support for webkitgtk WebView
+ gstreamer
+ gst-plugins-base
+ gst-plugins-good
+ gst-plugins-bad
+ ]);
- passthru.updateScript = gitUpdater {
- rev-prefix = "v.";
- };
+ passthru.updateScript = gitUpdater { rev-prefix = "v."; };
meta = with lib; {
description = "A modern feed reader designed for the GNOME desktop";
homepage = "https://gitlab.com/news-flash/news_flash_gtk";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ kira-bruneau stunkymonkey ];
+ maintainers = with maintainers; [
+ kira-bruneau
+ stunkymonkey
+ ];
platforms = platforms.unix;
mainProgram = "io.gitlab.news_flash.NewsFlash";
};