Skip to content

Commit

Permalink
go-musicfox: format with nixfmt-rfc-style
Browse files Browse the repository at this point in the history
(cherry picked from commit aec5f24)
  • Loading branch information
Aleksanaa authored and github-actions[bot] committed Nov 24, 2024
1 parent 1c3b38f commit 2497a3f
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions pkgs/by-name/go/go-musicfox/package.nix
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down Expand Up @@ -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 { };

Expand All @@ -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
];
};
}

0 comments on commit 2497a3f

Please sign in to comment.