summary refs log tree commit diff
path: root/pkgs/os-specific/linux/rtkit/default.nix
blob: d2e94b15d4d25b9d7b589a2795ca7c35f7320c2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
  };
}