nixpkgs/pkgs/development/libraries/libaudclient/default.nix

23 lines
641 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, dbus-glib }:
2015-08-13 11:12:33 +00:00
stdenv.mkDerivation rec {
name = "libaudclient-3.5-rc2";
version = "3.5-rc2";
src = fetchurl {
url = "https://distfiles.audacious-media-player.org/${name}.tar.bz2";
2015-08-13 11:12:33 +00:00
sha256 = "0nhpgz0kg8r00z54q5i96pjk7s57krq3fvdypq496c7fmlv9kdap";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib dbus-glib ];
2015-08-13 11:12:33 +00:00
meta = with stdenv.lib; {
description = "Legacy D-Bus client library for Audacious";
homepage = "https://audacious-media-player.org/";
2015-08-13 11:12:33 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; unix;
2015-08-13 11:12:33 +00:00
};
}