mpvScripts.mpris: Use mpv-unwrapped

Needed after #88620 to fix evaluation in some cases. Fixes #100771
This commit is contained in:
Luke Bentley-Fox 2020-10-17 01:18:07 +01:00
parent 8133b9cb5f
commit 39e33a47b3
No known key found for this signature in database
GPG Key ID: A02C35CAD21C9BC4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, glib, mpv }:
{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, glib, mpv-unwrapped }:
stdenv.mkDerivation rec {
pname = "mpv-mpris";
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib mpv ];
buildInputs = [ glib mpv-unwrapped ];
installFlags = [ "SCRIPTS_DIR=$(out)/share/mpv/scripts" ];