tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
deadbeef-mpris2-plugin: init at 1.8
Nikolay Amiantov
10 years ago
4a12ff77
0ccf8eae
+25
2 changed files
expand all
collapse all
unified
split
pkgs
applications
audio
deadbeef
plugins
mpris2.nix
top-level
all-packages.nix
+23
pkgs/applications/audio/deadbeef/plugins/mpris2.nix
···
1
1
+
{ stdenv, fetchurl, pkgconfig, deadbeef, glib }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
version = "1.8";
5
5
+
name = "deadbeef-mpris2-plugin-${version}";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${name}.tar.xz";
9
9
+
sha256 = "1xg880zlxbqz7hs5g7xwc128l08j8c3isn45rdi138hi4fqbyjfi";
10
10
+
};
11
11
+
12
12
+
nativeBuildInputs = [ pkgconfig ];
13
13
+
14
14
+
buildInputs = [ deadbeef glib ];
15
15
+
16
16
+
meta = with stdenv.lib; {
17
17
+
description = "MPRISv2 plugin for the DeaDBeeF music player";
18
18
+
homepage = https://github.com/Serranya/deadbeef-mpris2-plugin/;
19
19
+
license = licenses.gpl2;
20
20
+
platforms = platforms.linux;
21
21
+
maintainers = [ maintainers.abbradar ];
22
22
+
};
23
23
+
}
+2
pkgs/top-level/all-packages.nix
···
11009
11009
pulseSupport = config.pulseaudio or true;
11010
11010
};
11011
11011
11012
11012
+
deadbeef-mpris2-plugin = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { };
11013
11013
+
11012
11014
dfasma = callPackage ../applications/audio/dfasma { };
11013
11015
11014
11016
dia = callPackage ../applications/graphics/dia {