Skip to content

Commit

Permalink
style: reformat with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mokurin000 committed Dec 13, 2024
1 parent da7b975 commit b3556e1
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions pkgs/by-name/wa/waylyrics/package.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
{ lib, rustPlatform, fetchFromGitHub, pkg-config, wrapGAppsHook4, openssl, dbus,
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
wrapGAppsHook4,
openssl,
dbus,
}:

rustPlatform.buildRustPackage rec {
Expand All @@ -16,8 +23,14 @@ rustPlatform.buildRustPackage rec {

cargoHash = "sha256-dTyUPLwDcT2b3Kw4Q7/DyX6YfFcaOeDq6CCUpG9QUQQ=";

nativeBuildInputs = [ pkg-config wrapGAppsHook4 ];
buildInputs = [ openssl dbus ];
nativeBuildInputs = [
pkg-config
wrapGAppsHook4
];
buildInputs = [
openssl
dbus
];

checkFlags = [
"--skip=tests::lrclib_lyric::get_lrclib_lyric" # Requires network access
Expand Down Expand Up @@ -55,9 +68,14 @@ rustPlatform.buildRustPackage rec {
description = "Desktop lyrics with QQ and NetEase Music source";
mainProgram = "waylyrics";
homepage = "https://github.com/waylyrics/waylyrics";
license = with licenses; [ mit cc-by-40 ];
maintainers = with maintainers; [ shadowrz aleksana ];
license = with licenses; [
mit
cc-by-40
];
maintainers = with maintainers; [
shadowrz
aleksana
];
platforms = platforms.linux;
};
}

0 comments on commit b3556e1

Please sign in to comment.