forked from mirrors/nixpkgs
5e885b005d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/deadbeef-mpris2-plugin/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.11 with grep in /nix/store/isa0i2bjry1xg3l8895k10w1zwd4ij9f-deadbeef-mpris2-plugin-1.11 - directory tree listing: https://gist.github.com/020d669dc365b545d61d171c5566d03a - du listing: https://gist.github.com/9cd938a3d8215dbc4f00d62fe20ca4f5
24 lines
695 B
Nix
24 lines
695 B
Nix
{ stdenv, fetchurl, pkgconfig, deadbeef, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "deadbeef-mpris2-plugin-${version}";
|
|
version = "1.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${name}.tar.xz";
|
|
sha256 = "1j631z34rwxf6wdjpsf8c2f1saq6qas1qmkgsg63m6zzpwqyizw0";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|