fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, stdenv, fetchurl, pkg-config, glib, dbus-glib }:
2
3stdenv.mkDerivation rec {
4 pname = "libaudclient";
5 version = "3.5-rc2";
6
7 src = fetchurl {
8 url = "https://distfiles.audacious-media-player.org/${pname}-${version}.tar.bz2";
9 sha256 = "0nhpgz0kg8r00z54q5i96pjk7s57krq3fvdypq496c7fmlv9kdap";
10 };
11
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ glib dbus-glib ];
14
15 meta = with lib; {
16 description = "Legacy D-Bus client library for Audacious";
17 homepage = "https://audacious-media-player.org/";
18 license = licenses.bsd2;
19 maintainers = with maintainers; [ pSub ];
20 platforms = with platforms; unix;
21 };
22}