Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libaudclient / default.nix
blob9c790172039bc3109b03f5d545f189c25ba07480
1 { lib, stdenv, fetchurl, pkg-config, glib, dbus-glib }:
3 stdenv.mkDerivation rec {
4   pname = "libaudclient";
5   version = "3.5-rc2";
7   src = fetchurl {
8     url = "https://distfiles.audacious-media-player.org/${pname}-${version}.tar.bz2";
9     sha256 = "0nhpgz0kg8r00z54q5i96pjk7s57krq3fvdypq496c7fmlv9kdap";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ glib dbus-glib ];
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   };