Merge pull request #137911 from prusnak/mplayer

mplayer: enable build on aarch64-darwin
This commit is contained in:
Pavol Rusnak 2021-09-17 13:22:20 +02:00 committed by GitHub
commit 8b0f315b76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -223,11 +223,11 @@ stdenv.mkDerivation rec {
fi fi
''; '';
meta = { meta = with lib; {
description = "A movie player that supports many video formats"; description = "A movie player that supports many video formats";
homepage = "http://mplayerhq.hu"; homepage = "http://mplayerhq.hu";
license = "GPL"; license = licenses.gpl2Only;
maintainers = [ lib.maintainers.eelco ]; maintainers = with maintainers; [ eelco ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
}; };
} }