From 7372a014001a5503aad95abbd4421f63b8fa11b2 Mon Sep 17 00:00:00 2001 From: aleksana Date: Tue, 18 Jun 2024 21:50:58 +0800 Subject: [PATCH] gnome-feeds: format with nixfmt-rfc-style --- pkgs/by-name/gn/gnome-feeds/listparser.nix | 11 +++---- pkgs/by-name/gn/gnome-feeds/package.nix | 37 +++++++++++----------- 2 files changed, 23 insertions(+), 25 deletions(-) diff --git a/pkgs/by-name/gn/gnome-feeds/listparser.nix b/pkgs/by-name/gn/gnome-feeds/listparser.nix index 7dd2f752598f..09e41d63e4c0 100644 --- a/pkgs/by-name/gn/gnome-feeds/listparser.nix +++ b/pkgs/by-name/gn/gnome-feeds/listparser.nix @@ -1,6 +1,7 @@ -{ lib -, python3 -, fetchPypi +{ + lib, + python3, + fetchPypi, }: python3.pkgs.buildPythonPackage rec { @@ -25,9 +26,7 @@ python3.pkgs.buildPythonPackage rec { description = "Parser for subscription lists"; homepage = "https://github.com/kurtmckee/listparser"; license = licenses.lgpl3Plus; - maintainers = [ - maintainers.pbogdan - ]; + maintainers = [ maintainers.pbogdan ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-feeds/package.nix b/pkgs/by-name/gn/gnome-feeds/package.nix index def8bfb51520..51200b7c0915 100644 --- a/pkgs/by-name/gn/gnome-feeds/package.nix +++ b/pkgs/by-name/gn/gnome-feeds/package.nix @@ -1,22 +1,23 @@ -{ lib -, callPackage +{ + lib, + callPackage, -, fetchFromGitLab + fetchFromGitLab, -, appstream -, gobject-introspection -, meson -, ninja -, pkg-config -, wrapGAppsHook3 + appstream, + gobject-introspection, + meson, + ninja, + pkg-config, + wrapGAppsHook3, -, glib -, glib-networking -, gtk3 -, libhandy -, listparser ? callPackage ./listparser.nix { } -, webkitgtk -, python3 + glib, + glib-networking, + gtk3, + libhandy, + listparser ? callPackage ./listparser.nix { }, + webkitgtk, + python3, }: python3.pkgs.buildPythonApplication rec { @@ -81,9 +82,7 @@ python3.pkgs.buildPythonApplication rec { mainProgram = "gfeeds"; homepage = "https://gitlab.gnome.org/World/gfeeds"; license = licenses.gpl3Plus; - maintainers = [ - maintainers.pbogdan - ]; + maintainers = [ maintainers.pbogdan ]; platforms = platforms.linux; }; }