* 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:
parent
3fac08a565
commit
933dc681e7
2 changed files with 19 additions and 0 deletions
17
pkgs/os-specific/linux/rtkit/default.nix
Normal file
17
pkgs/os-specific/linux/rtkit/default.nix
Normal file
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -5627,6 +5627,8 @@ let
|
|||
|
||||
rt73fw = callPackage ../os-specific/linux/firmware/rt73 { };
|
||||
|
||||
rtkit = callPackage ../os-specific/linux/rtkit { };
|
||||
|
||||
sdparm = callPackage ../os-specific/linux/sdparm { };
|
||||
|
||||
shadow = callPackage ../os-specific/linux/shadow { };
|
||||
|
|
Loading…
Reference in a new issue