swww: cleanup using nixfmt-rfc-style, use lib explicitly where required
This commit is contained in:
parent
2ecb214837
commit
26b8d7b8c8
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user