61 lines
1.8 KiB
Nix
61 lines
1.8 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, makeWrapper
|
|
, stdenv
|
|
, undmg
|
|
, variant ?
|
|
if (stdenv.isDarwin && stdenv.isAarch64)
|
|
then "arm64"
|
|
else if (stdenv.isDarwin && stdenv.isx86_64)
|
|
then "intel64"
|
|
else "universal" # not reachable by normal means
|
|
}:
|
|
|
|
assert builtins.elem variant [ "arm64" "intel64" "universal" ];
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "vlc-bin-${variant}";
|
|
version = "3.0.20";
|
|
|
|
src = fetchurl {
|
|
url = "http://get.videolan.org/vlc/${finalAttrs.version}/macosx/vlc-${finalAttrs.version}-${variant}.dmg";
|
|
hash = {
|
|
"arm64" = "sha256-XV8O5S2BmCpiL0AhkopktHBalVRJniDDPQusIlkLEY4=";
|
|
"intel64" = "sha256-pNwUQfyrjiuQxil0zlOZu4isv2xw1U8hxhWNn7H7onk=";
|
|
"universal" = "sha256-IqGPOWzMmHbGDV+0QxFslv19BC2J1Z5Qzcuja/Od1Us=";
|
|
}.${variant};
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
undmg
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications $out/bin
|
|
cp -r "VLC.app" $out/Applications
|
|
makeWrapper "$out/Applications/VLC.app/Contents/MacOS/VLC" "$out/bin/vlc"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cross-platform media player and streaming server; precompiled binary for MacOS, repacked from official website";
|
|
homepage = "https://www.videolan.org/vlc/";
|
|
downloadPage = "https://www.videolan.org/vlc/download-macosx.html";
|
|
license = lib.licenses.lgpl21Plus;
|
|
mainProgram = "vlc";
|
|
maintainers = with lib.maintainers; [ pcasaretto ];
|
|
platforms = lib.systems.inspect.patternLogicalAnd
|
|
(lib.systems.inspect.patterns.isDarwin)
|
|
(({
|
|
"arm64" = lib.systems.inspect.patterns.isAarch64;
|
|
"intel64" = lib.systems.inspect.patterns.isx86_64;
|
|
"universal" = lib.systems.inspect.patterns.isDarwin;
|
|
}).${variant});
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
})
|