Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
pkg-config,
|
|
glib,
|
|
mpv-unwrapped,
|
|
ffmpeg,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mpv-mpris";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hoyon";
|
|
repo = "mpv-mpris";
|
|
rev = version;
|
|
hash = "sha256-vZIO6ILatIWa9nJYOp4AMKwvaZLahqYWRLMDOizyBI0=";
|
|
};
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
glib
|
|
mpv-unwrapped
|
|
ffmpeg
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace-fail 'PKG_CONFIG =' 'PKG_CONFIG ?='
|
|
'';
|
|
|
|
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
|
|
stripDebugList = [ "share/mpv/scripts" ];
|
|
passthru.scriptName = "mpris.so";
|
|
|
|
meta = with lib; {
|
|
description = "MPRIS plugin for mpv";
|
|
homepage = "https://github.com/hoyon/mpv-mpris";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ajs124 ];
|
|
changelog = "https://github.com/hoyon/mpv-mpris/releases/tag/${version}";
|
|
};
|
|
}
|