3
0
Fork 0
forked from mirrors/nixpkgs

deadbeef-mpris2-plugin: init at 1.8

This commit is contained in:
Nikolay Amiantov 2015-08-17 01:17:27 +03:00
parent 0ccf8eae2f
commit 4a12ff77cc
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View file

@ -11009,6 +11009,8 @@ let
pulseSupport = config.pulseaudio or true;
};
deadbeef-mpris2-plugin = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { };
dfasma = callPackage ../applications/audio/dfasma { };
dia = callPackage ../applications/graphics/dia {