* Added rtkit, a DBus system service for elevating the scheduling
priority of user processes. svn path=/nixpkgs/branches/kde-4.7/; revision=27961
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl, pkgconfig, dbus, libcap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rtkit-0.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://0pointer.de/public/${name}.tar.gz";
|
||||
sha256 = "08118ya3pkxd6gbbshas23xwj483169fqmxzhp5sgmfr16n97skl";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig dbus libcap ];
|
||||
|
||||
meta = {
|
||||
homepage = http://0pointer.de/blog/projects/rtkit;
|
||||
descriptions = "A daemon that hands out real-time priority to processes";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user