gnome-feeds: format with nixfmt-rfc-style

This commit is contained in:
aleksana 2024-06-18 21:50:58 +08:00
parent 619db5d8f4
commit 7372a01400
2 changed files with 23 additions and 25 deletions

View File

@ -1,6 +1,7 @@
{ lib {
, python3 lib,
, fetchPypi python3,
fetchPypi,
}: }:
python3.pkgs.buildPythonPackage rec { python3.pkgs.buildPythonPackage rec {
@ -25,9 +26,7 @@ python3.pkgs.buildPythonPackage rec {
description = "Parser for subscription lists"; description = "Parser for subscription lists";
homepage = "https://github.com/kurtmckee/listparser"; homepage = "https://github.com/kurtmckee/listparser";
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = [ maintainers = [ maintainers.pbogdan ];
maintainers.pbogdan
];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }

View File

@ -1,22 +1,23 @@
{ lib {
, callPackage lib,
callPackage,
, fetchFromGitLab fetchFromGitLab,
, appstream appstream,
, gobject-introspection gobject-introspection,
, meson meson,
, ninja ninja,
, pkg-config pkg-config,
, wrapGAppsHook3 wrapGAppsHook3,
, glib glib,
, glib-networking glib-networking,
, gtk3 gtk3,
, libhandy libhandy,
, listparser ? callPackage ./listparser.nix { } listparser ? callPackage ./listparser.nix { },
, webkitgtk webkitgtk,
, python3 python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -81,9 +82,7 @@ python3.pkgs.buildPythonApplication rec {
mainProgram = "gfeeds"; mainProgram = "gfeeds";
homepage = "https://gitlab.gnome.org/World/gfeeds"; homepage = "https://gitlab.gnome.org/World/gfeeds";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = [ maintainers = [ maintainers.pbogdan ];
maintainers.pbogdan
];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }