nixpkgs/pkgs/applications/audio/deadbeef/plugins/mpris2.nix

24 lines
695 B
Nix
Raw Normal View History

2015-08-16 23:17:27 +01:00
{ stdenv, fetchurl, pkgconfig, deadbeef, glib }:
stdenv.mkDerivation rec {
name = "deadbeef-mpris2-plugin-${version}";
version = "1.11";
2015-08-16 23:17:27 +01:00
src = fetchurl {
url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${name}.tar.xz";
sha256 = "1j631z34rwxf6wdjpsf8c2f1saq6qas1qmkgsg63m6zzpwqyizw0";
2015-08-16 23:17:27 +01:00
};
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/;
2015-08-16 23:17:27 +01:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.abbradar ];
};
}