From c531bc48fcfcb11b0247e19455ca80507840778a Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 23 Jul 2024 16:08:36 +0100 Subject: [PATCH 1/3] chiaki4deck: clarify licence --- pkgs/games/chiaki4deck/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/games/chiaki4deck/default.nix b/pkgs/games/chiaki4deck/default.nix index 7ea0159236ac..488747b1e038 100644 --- a/pkgs/games/chiaki4deck/default.nix +++ b/pkgs/games/chiaki4deck/default.nix @@ -127,6 +127,10 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://streetpea.github.io/chiaki4deck/"; description = "Fork of Chiaki (Open Source Playstation Remote Play) with Enhancements for Steam Deck"; + # Includes OpenSSL linking exception that we currently have no way + # to represent. + # + # See also: license = licenses.agpl3Only; maintainers = with maintainers; [ devusb ]; platforms = platforms.linux; From fdc5d0dc1b1623239eb6383971947e8f5480aee9 Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 23 Jul 2024 16:23:40 +0100 Subject: [PATCH 2/3] chiaki4deck: unpin ffmpeg_6 This builds fine with FFmpeg 7. --- pkgs/games/chiaki4deck/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/chiaki4deck/default.nix b/pkgs/games/chiaki4deck/default.nix index 488747b1e038..d5995a5b5e35 100644 --- a/pkgs/games/chiaki4deck/default.nix +++ b/pkgs/games/chiaki4deck/default.nix @@ -6,7 +6,7 @@ , pkg-config , protobuf , python3 -, ffmpeg_6 +, ffmpeg , libopus , wrapQtAppsHook , qtbase @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - ffmpeg_6 + ffmpeg libopus qtbase qtmultimedia From 7dd75b835c75aa9082119da3edcdc60810c0f280 Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 23 Jul 2024 16:12:21 +0100 Subject: [PATCH 3/3] chiaki4deck: 1.7.3 -> 1.7.4 Diff: https://github.com/streetpea/chiaki4deck/compare/v1.7.3...v1.7.4 --- pkgs/games/chiaki4deck/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/games/chiaki4deck/default.nix b/pkgs/games/chiaki4deck/default.nix index d5995a5b5e35..cd0a8f07d812 100644 --- a/pkgs/games/chiaki4deck/default.nix +++ b/pkgs/games/chiaki4deck/default.nix @@ -36,25 +36,16 @@ stdenv.mkDerivation rec { pname = "chiaki4deck"; - version = "1.7.3"; + version = "1.7.4"; src = fetchFromGitHub { owner = "streetpea"; repo = pname; rev = "v${version}"; - hash = "sha256-NiShxa49ZKmK/3q8+PHwy7edwjaqtkOqfhd2ncWK5UQ="; + hash = "sha256-9EF+Mm6nZeo3XYH8KO7e22cJ4e9TWUEinhkm+Z213RU="; fetchSubmodules = true; }; - patches = [ - # Fix build with miniupnpc 2.2.8 - # https://github.com/streetpea/chiaki4deck/pull/355 - (fetchpatch2 { - url = "https://github.com/streetpea/chiaki4deck/commit/e5806ae39cc6e8632d0f8cccefb5b7ddd458951a.patch?full_index=1"; - hash = "sha256-0oGhymCZkhckJkvP64WNc4aaEzXlXYI84S7Blq7WgVw="; - }) - ]; - nativeBuildInputs = [ cmake pkg-config