go-musicfox: format with nixfmt-rfc-style

This commit is contained in:
aleksana 2024-11-21 18:09:01 +08:00
parent b79710e0af
commit aec5f24fed

View File

@ -1,11 +1,12 @@
{ lib
, buildGoModule
, fetchFromGitHub
, pkg-config
, flac
, stdenv
, alsa-lib
, nix-update-script
{
lib,
buildGoModule,
fetchFromGitHub,
pkg-config,
flac,
stdenv,
alsa-lib,
nix-update-script,
}:
buildGoModule rec {
@ -35,11 +36,13 @@ buildGoModule rec {
pkg-config
];
buildInputs = [
flac
] ++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
];
buildInputs =
[
flac
]
++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
];
passthru.updateScript = nix-update-script { };
@ -48,6 +51,10 @@ buildGoModule rec {
homepage = "https://github.com/anhoder/go-musicfox";
license = lib.licenses.mit;
mainProgram = "musicfox";
maintainers = with lib.maintainers; [ zendo Ruixi-rebirth aleksana ];
maintainers = with lib.maintainers; [
zendo
Ruixi-rebirth
aleksana
];
};
}