Commit aec5f24f authored by aleksana's avatar aleksana
Browse files

go-musicfox: format with nixfmt-rfc-style

parent b79710e0
Loading
Loading
Loading
Loading
+21 −14
Original line number Diff line number Diff line
{ 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,9 +36,11 @@ buildGoModule rec {
    pkg-config
  ];

  buildInputs = [
  buildInputs =
    [
      flac
  ] ++ lib.optionals stdenv.hostPlatform.isLinux [
    ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      alsa-lib
    ];

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