f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
23 lines
695 B
Nix
23 lines
695 B
Nix
{ stdenv, fetchurl, pkgconfig, deadbeef, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "deadbeef-mpris2-plugin-${version}";
|
|
version = "1.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${name}.tar.xz";
|
|
sha256 = "083fbvi06y85khr8hdm4rl5alxdanjbbyphizyr4hi93d7a0jg75";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|