Merge pull request #228824 from Aleksanaa/go-musicfox

go-musicfox: removing clang dependency
This commit is contained in:
figsoda
2023-04-28 22:18:22 -04:00
committed by GitHub
@@ -1,14 +1,12 @@
{ lib
, fetchFromGitHub
, buildGoModule
, clangStdenv
, fetchFromGitHub
, pkg-config
, alsa-lib
, flac
}:
# gcc only supports objc on darwin
buildGoModule.override { stdenv = clangStdenv; } rec {
buildGoModule rec {
pname = "go-musicfox";
version = "4.0.5";
@@ -45,6 +43,6 @@ buildGoModule.override { stdenv = clangStdenv; } rec {
homepage = "https://github.com/anhoder/go-musicfox";
license = licenses.mit;
mainProgram = "musicfox";
maintainers = with maintainers; [ zendo Ruixi-rebirth ];
maintainers = with maintainers; [ zendo Ruixi-rebirth aleksana ];
};
}