Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 22 lines 637 B view raw
1{ stdenv, fetchurl, pkgconfig, glib, dbus-glib }: 2 3stdenv.mkDerivation rec { 4 name = "libaudclient-3.5-rc2"; 5 version = "3.5-rc2"; 6 7 src = fetchurl { 8 url = "http://distfiles.audacious-media-player.org/${name}.tar.bz2"; 9 sha256 = "0nhpgz0kg8r00z54q5i96pjk7s57krq3fvdypq496c7fmlv9kdap"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ glib dbus-glib ]; 14 15 meta = with stdenv.lib; { 16 description = "Legacy D-Bus client library for Audacious"; 17 homepage = http://audacious-media-player.org/; 18 license = licenses.bsd2; 19 maintainers = with maintainers; [ pSub ]; 20 platforms = with platforms; unix; 21 }; 22}