diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 9be2825a93ba..be1e8934e57a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -21415,6 +21415,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"; diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index 4a02a3544140..24936fef4acc 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" @@ -107,8 +107,8 @@ stdenv.mkDerivation (finalAttrs: { src = fetchFromGitHub { owner = "mpv-player"; repo = "mpv"; - rev = "v${finalAttrs.version}"; - hash = "sha256-BOGh+QBTO7hrHohh+RqjSF8eHQH8jVBPjG/k4eyFaaM="; + tag = "v${finalAttrs.version}"; + 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 @@ -309,6 +309,7 @@ stdenv.mkDerivation (finalAttrs: { fpletz globin ma27 + SchweGELBin ]; platforms = lib.platforms.unix; };