nixpkgs/pkgs/os-specific/linux/rtkit/default.nix
Eelco Dolstra 933dc681e7 * Added rtkit, a DBus system service for elevating the scheduling
priority of user processes.

svn path=/nixpkgs/branches/kde-4.7/; revision=27961
2011-07-26 14:12:33 +00:00

18 lines
445 B
Nix

{ 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";
};
}