From 2b21f84680c47dc511442a6e1230420f386a98b8 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Fri, 28 Mar 2025 14:11:17 +0100 Subject: [PATCH 1/4] maintainers: add SchweGELBin --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d5462acd543c..34a8a3466e8a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -21403,6 +21403,12 @@ githubId = 64630479; name = "Schweber"; }; + SchweGELBin = { + email = "abramjannikmichael06@gmail.com"; + name = "Jannik Michael Abram"; + github = "SchweGELBin"; + githubId = 67663319; + }; sciencentistguy = { email = "jamie@quigley.xyz"; name = "Jamie Quigley"; From 3beaef4aa58f38b241bc5f4ed46954e359bdacc7 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Fri, 28 Mar 2025 14:12:45 +0100 Subject: [PATCH 2/4] mpv: add SchweGELBin as maintainer --- pkgs/applications/video/mpv/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index 4a02a3544140..08a340086cb7 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -309,6 +309,7 @@ stdenv.mkDerivation (finalAttrs: { fpletz globin ma27 + SchweGELBin ]; platforms = lib.platforms.unix; }; From 697b3fc4b98c5dfd3e4c48767559e0b9222a547f Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Fri, 28 Mar 2025 14:13:25 +0100 Subject: [PATCH 3/4] mpv: 0.39.0 -> 0.40.0 mpv changed the default configuration data in the following commit: https://github.com/mpv-player/mpv/commit/b52a67dde2bebc83f2413bd667602d837fd65019 Because ot that, the part we need to patch also changed. --- pkgs/applications/video/mpv/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index 08a340086cb7..5bdf2b2ad9e9 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -95,7 +95,7 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "mpv"; - version = "0.39.0"; + version = "0.40.0"; outputs = [ "out" @@ -108,7 +108,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "mpv-player"; repo = "mpv"; rev = "v${finalAttrs.version}"; - hash = "sha256-BOGh+QBTO7hrHohh+RqjSF8eHQH8jVBPjG/k4eyFaaM="; + hash = "sha256-x8cDczKIX4+KrvRxZ+72TGlEQHd4Kx7naq0CSoOZGHA="; }; postPatch = lib.concatStringsSep "\n" [ @@ -116,7 +116,7 @@ stdenv.mkDerivation (finalAttrs: { # between out and dev '' substituteInPlace meson.build \ - --replace-fail "conf_data.set_quoted('CONFIGURATION', configuration)" \ + --replace-fail "conf_data.set_quoted('CONFIGURATION', meson.build_options())" \ "conf_data.set_quoted('CONFIGURATION', '')" '' # A trick to patchShebang everything except mpv_identify.sh From a55c3c56539d023bda32435b20852dc8bdf91e04 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Fri, 28 Mar 2025 14:14:19 +0100 Subject: [PATCH 4/4] mpv: src.rev -> src.tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: GaƩtan Lepage <33058747+GaetanLepage@users.noreply.github.com> --- pkgs/applications/video/mpv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index 5bdf2b2ad9e9..24936fef4acc 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchFromGitHub { owner = "mpv-player"; repo = "mpv"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-x8cDczKIX4+KrvRxZ+72TGlEQHd4Kx7naq0CSoOZGHA="; };