about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2023-11-20 12:33:06 +0100
committerajs124 <git@ajs124.de>2023-11-28 15:27:33 +0100
commit8e2f58befda8c52c979ab325279cb3f1ce4bfc27 (patch)
tree35bb6043b92155276d589ee9263427a5a110a5c8 /pkgs/applications/video/mpv
parent024e4447a42868b4c8f3ac8b3e6a2da83c682de1 (diff)
downloadnixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.tar
nixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.tar.gz
nixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.tar.bz2
nixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.tar.lz
nixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.tar.xz
nixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.tar.zst
nixlib-8e2f58befda8c52c979ab325279cb3f1ce4bfc27.zip
mpvScripts.mpris: 1.0 -> 1.1
https://github.com/hoyon/mpv-mpris/releases/tag/1.1
Diffstat (limited to 'pkgs/applications/video/mpv')
-rw-r--r--pkgs/applications/video/mpv/scripts/mpris.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/video/mpv/scripts/mpris.nix b/pkgs/applications/video/mpv/scripts/mpris.nix
index 2deb0e9b976e..cc230c2f1f43 100644
--- a/pkgs/applications/video/mpv/scripts/mpris.nix
+++ b/pkgs/applications/video/mpv/scripts/mpris.nix
@@ -1,25 +1,25 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, glib, mpv-unwrapped }:
+{ lib, stdenv, fetchFromGitHub, pkg-config, glib, mpv-unwrapped, ffmpeg }:
 
 stdenv.mkDerivation rec {
   pname = "mpv-mpris";
-  version = "1.0";
+  version = "1.1";
 
   src = fetchFromGitHub {
     owner = "hoyon";
     repo = "mpv-mpris";
     rev = version;
-    sha256 = "sha256-7kPpCfiWe58V4fBOsEVvGoGeNIlMUAyD1fqS5/8k/e4=";
+    hash = "sha256-vZIO6ILatIWa9nJYOp4AMKwvaZLahqYWRLMDOizyBI0=";
   };
 
   nativeBuildInputs = [ pkg-config ];
 
-  buildInputs = [ glib mpv-unwrapped ];
+  buildInputs = [ glib mpv-unwrapped ffmpeg ];
 
   postPatch = ''
     substituteInPlace Makefile --replace 'PKG_CONFIG =' 'PKG_CONFIG ?='
   '';
 
-  installFlags = [ "SCRIPTS_DIR=$(out)/share/mpv/scripts" ];
+  installFlags = [ "SCRIPTS_DIR=${placeholder "out"}/share/mpv/scripts" ];
 
   # Otherwise, the shared object isn't `strip`ped. See:
   # https://discourse.nixos.org/t/debug-why-a-derivation-has-a-reference-to-gcc/7009
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/hoyon/mpv-mpris";
     license = licenses.mit;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ ajs124 ];
     changelog = "https://github.com/hoyon/mpv-mpris/releases/tag/${version}";
   };
 }