e33ef05c26
svn path=/nixpkgs/branches/kde-4.7/; revision=28111
19 lines
489 B
Nix
19 lines
489 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";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|