swayosd: format with nixfmt

This commit is contained in:
Karun Sandhu 2024-11-04 07:23:57 +01:00
parent 18536bf04c
commit 35d8ef7a4d
No known key found for this signature in database

View File

@ -1,23 +1,23 @@
{ lib {
, rustPlatform lib,
, fetchFromGitHub rustPlatform,
, pkg-config fetchFromGitHub,
, wrapGAppsHook3 pkg-config,
, brightnessctl wrapGAppsHook3,
, cargo brightnessctl,
, coreutils cargo,
, gtk-layer-shell coreutils,
, libevdev gtk-layer-shell,
, libinput libevdev,
, libpulseaudio libinput,
, meson libpulseaudio,
, ninja meson,
, rustc ninja,
, sassc rustc,
, stdenv sassc,
, udev stdenv,
udev,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "swayosd"; pname = "swayosd";
version = "0-unstable-2024-04-15"; version = "0-unstable-2024-04-15";
@ -74,7 +74,11 @@ stdenv.mkDerivation rec {
description = "GTK based on screen display for keyboard shortcuts"; description = "GTK based on screen display for keyboard shortcuts";
homepage = "https://github.com/ErikReider/SwayOSD"; homepage = "https://github.com/ErikReider/SwayOSD";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ aleksana barab-i sergioribera ]; maintainers = with maintainers; [
aleksana
barab-i
sergioribera
];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }