about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-13 00:14:32 +0100
committerGitHub <noreply@github.com>2024-01-13 00:14:32 +0100
commit644fcfd126b711abd485633834385613ac4b2d30 (patch)
treec0386144b3f6206ab7e5d7852f5ab949aaa6236d /pkgs/applications/video
parentfb63809f3aec8d9924cc48f7f974e0879c89b30d (diff)
parent6ea201f75e5fc3b9e7a41188f2b3ffe6aeb20ebe (diff)
Merge pull request #280297 from Luflosi/update/iina
iina: 1.3.3 -> 1.3.4
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/iina/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/applications/video/iina/default.nix b/pkgs/applications/video/iina/default.nix
deleted file mode 100644
index 59e10dccc7504..0000000000000
--- a/pkgs/applications/video/iina/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, fetchurl
-, stdenv
-, undmg
-, nix-update-script
-}:
-
-stdenv.mkDerivation rec {
-  pname = "iina";
-  version = "1.3.3";
-
-  src = fetchurl {
-    url = "https://github.com/iina/iina/releases/download/v${version}/IINA.v${version}.dmg";
-    hash = "sha256-Sz9sS+07t32+KcEr9tXQlZKEr7Ace1mjX9caOicIiZE=";
-  };
-
-  nativeBuildInputs = [ undmg ];
-
-  sourceRoot = "IINA.app";
-
-  installPhase = ''
-    mkdir -p $out/{bin,Applications/IINA.app}
-    cp -R . "$out/Applications/IINA.app"
-    ln -s "$out/Applications/IINA.app/Contents/MacOS/iina-cli" "$out/bin/iina"
-  '';
-
-  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;
-    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
-    maintainers = with maintainers; [ arkivm stepbrobd ];
-  };
-}