mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ags: format with nixfmt-rfc-style
This commit is contained in:
parent
fd152d9f30
commit
dd042ccaae
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user