9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
35 lines
769 B
Nix
35 lines
769 B
Nix
{ lib
|
|
, fetchurl
|
|
, stdenv
|
|
, undmg
|
|
, nix-update-script
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "iina";
|
|
version = "1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/iina/iina/releases/download/v${version}/IINA.v${version}.dmg";
|
|
hash = "sha256-rF5yv2QHWVUUsyf/u78jWRn4C629GBJgB/i8YnaKHBk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
|
|
sourceRoot = "IINA.app";
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/Applications/IINA.app"
|
|
cp -R . "$out/Applications/IINA.app"
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://iina.io/";
|
|
description = "The modern media player for macOS";
|
|
platforms = platforms.darwin;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ arkivm stepbrobd ];
|
|
};
|
|
}
|