Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 pkg-config, 6 glib, 7 dbus-glib, 8}: 9 10stdenv.mkDerivation rec { 11 pname = "libaudclient"; 12 version = "3.5-rc2"; 13 14 src = fetchurl { 15 url = "https://distfiles.audacious-media-player.org/${pname}-${version}.tar.bz2"; 16 sha256 = "0nhpgz0kg8r00z54q5i96pjk7s57krq3fvdypq496c7fmlv9kdap"; 17 }; 18 19 nativeBuildInputs = [ pkg-config ]; 20 buildInputs = [ 21 glib 22 dbus-glib 23 ]; 24 25 meta = with lib; { 26 description = "Legacy D-Bus client library for Audacious"; 27 homepage = "https://audacious-media-player.org/"; 28 license = licenses.bsd2; 29 maintainers = with maintainers; [ pSub ]; 30 platforms = with platforms; unix; 31 }; 32}