at 16.09-beta 574 B view raw
1{ stdenv, fetchurl, pkgconfig, dbus, libcap }: 2 3stdenv.mkDerivation rec { 4 name = "rtkit-0.11"; 5 6 src = fetchurl { 7 url = "http://0pointer.de/public/${name}.tar.xz"; 8 sha256 = "1l5cb1gp6wgpc9vq6sx021qs6zb0nxg3cn1ba00hjhgnrw4931b8"; 9 }; 10 11 configureFlags = [ 12 "--with-systemdsystemunitdir=$(out)/etc/systemd/system" 13 ]; 14 15 buildInputs = [ pkgconfig dbus libcap ]; 16 17 meta = { 18 homepage = http://0pointer.de/blog/projects/rtkit; 19 descriptions = "A daemon that hands out real-time priority to processes"; 20 platforms = stdenv.lib.platforms.linux; 21 }; 22}