mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
39 lines
1.1 KiB
Nix
39 lines
1.1 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 '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}";
|
|
};
|
|
}
|