deadbeef-mpris2-plugin: init at 1.8
This commit is contained in:
parent
0ccf8eae2f
commit
4a12ff77cc
23
pkgs/applications/audio/deadbeef/plugins/mpris2.nix
Normal file
23
pkgs/applications/audio/deadbeef/plugins/mpris2.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, deadbeef, glib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.8";
|
||||||
|
name = "deadbeef-mpris2-plugin-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${name}.tar.xz";
|
||||||
|
sha256 = "1xg880zlxbqz7hs5g7xwc128l08j8c3isn45rdi138hi4fqbyjfi";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ deadbeef glib ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "MPRISv2 plugin for the DeaDBeeF music player";
|
||||||
|
homepage = https://github.com/Serranya/deadbeef-mpris2-plugin/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.abbradar ];
|
||||||
|
};
|
||||||
|
}
|
@ -11009,6 +11009,8 @@ let
|
|||||||
pulseSupport = config.pulseaudio or true;
|
pulseSupport = config.pulseaudio or true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
deadbeef-mpris2-plugin = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { };
|
||||||
|
|
||||||
dfasma = callPackage ../applications/audio/dfasma { };
|
dfasma = callPackage ../applications/audio/dfasma { };
|
||||||
|
|
||||||
dia = callPackage ../applications/graphics/dia {
|
dia = callPackage ../applications/graphics/dia {
|
||||||
|
Loading…
Reference in New Issue
Block a user