Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 22 lines 646 B view raw
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}