ags: format with nixfmt-rfc-style

This commit is contained in:
John Titor 2024-05-07 16:29:18 +05:30
parent fd152d9f30
commit dd042ccaae
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -1,22 +1,23 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
, meson
, ninja
, pkg-config
, gobject-introspection
, gjs
, glib-networking
, gnome
, gtk-layer-shell
, libpulseaudio
, libsoup_3
, networkmanager
, upower
, typescript
, wrapGAppsHook3
, linux-pam
, nix-update-script
{
lib,
buildNpmPackage,
fetchFromGitHub,
meson,
ninja,
pkg-config,
gobject-introspection,
gjs,
glib-networking,
gnome,
gtk-layer-shell,
libpulseaudio,
libsoup_3,
networkmanager,
upower,
typescript,
wrapGAppsHook3,
linux-pam,
nix-update-script,
}:
buildNpmPackage rec {
@ -33,9 +34,7 @@ buildNpmPackage rec {
npmDepsHash = "sha256-ucWdADdMqAdLXQYKGOXHNRNM9bhjKX4vkMcQ8q/GZ20=";
mesonFlags = [
(lib.mesonBool "build_types" true)
];
mesonFlags = [ (lib.mesonBool "build_types" true) ];
nativeBuildInputs = [
meson
@ -66,12 +65,16 @@ buildNpmPackage rec {
passthru.updateScript = nix-update-script {};
meta = with lib; {
meta = {
homepage = "https://github.com/Aylur/ags";
description = "A EWW-inspired widget system as a GJS library";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ foo-dogsquared johnrtitor ];
changelog = "https://github.com/Aylur/ags/releases/tag/v${version}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
foo-dogsquared
johnrtitor
];
mainProgram = "ags";
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}