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
, 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;
};
}

View File

@ -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;
};
}