swww: cleanup using nixfmt-rfc-style, use lib explicitly where required

This commit is contained in:
John Titor 2024-05-04 11:13:27 +05:30
parent 2ecb214837
commit 26b8d7b8c8
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0
1 changed files with 16 additions and 12 deletions

View File

@ -1,11 +1,12 @@
{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, lz4
, libxkbcommon
, installShellFiles
, scdoc
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
lz4,
libxkbcommon,
installShellFiles,
scdoc,
}:
rustPlatform.buildRustPackage rec {
@ -52,12 +53,15 @@ rustPlatform.buildRustPackage rec {
--zsh completions/_swww
'';
meta = with lib; {
meta = {
description = "Efficient animated wallpaper daemon for wayland, controlled at runtime";
homepage = "https://github.com/LGFae/swww";
license = licenses.gpl3;
maintainers = with maintainers; [ mateodd25 donovanglover ];
platforms = platforms.linux;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [
mateodd25
donovanglover
];
platforms = lib.platforms.linux;
mainProgram = "swww";
};
}