iina: init at 1.1.2
This commit is contained in:
parent
ce025026ac
commit
2ed6fbfaf1
26
pkgs/applications/video/iina/default.nix
Normal file
26
pkgs/applications/video/iina/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchurl, undmg }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "iina";
|
||||||
|
version = "1.1.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/iina/iina/releases/download/v1.0.7-beta2/IINA.v1.0.7-beta2.dmg";
|
||||||
|
sha256 = "1w0l3b1kar9zglqkildcqhlwara6zy2p3x79kqa2d0b43nqka82n";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ undmg ];
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p "$out/Applications/IINA.app"
|
||||||
|
cp -R . "$out/Applications/IINA.app"
|
||||||
|
chmod +x "$out/Applications/IINA.app/Contents/MacOS/IINA"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The modern video player for macOS.";
|
||||||
|
homepage = "http://https://iina.io/";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.darwin;
|
||||||
|
maintainers = with maintainers; [ mic92 ];
|
||||||
|
};
|
||||||
|
}
|
@ -21236,6 +21236,8 @@ in
|
|||||||
|
|
||||||
icesl = callPackage ../applications/misc/icesl { };
|
icesl = callPackage ../applications/misc/icesl { };
|
||||||
|
|
||||||
|
iina = callPackage ../applications/video/iina { };
|
||||||
|
|
||||||
keepassx = callPackage ../applications/misc/keepassx { };
|
keepassx = callPackage ../applications/misc/keepassx { };
|
||||||
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
|
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
|
||||||
keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { };
|
keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user