nixpkgs/pkgs/os-specific/linux/rtkit/default.nix

23 lines
574 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, dbus, libcap }:
stdenv.mkDerivation rec {
2014-04-18 10:21:20 +00:00
name = "rtkit-0.11";
src = fetchurl {
2014-04-18 10:21:20 +00:00
url = "http://0pointer.de/public/${name}.tar.xz";
sha256 = "1l5cb1gp6wgpc9vq6sx021qs6zb0nxg3cn1ba00hjhgnrw4931b8";
};
2014-04-18 10:21:20 +00:00
configureFlags = [
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
];
buildInputs = [ pkgconfig dbus libcap ];
2014-04-18 10:21:20 +00:00
meta = {
homepage = http://0pointer.de/blog/projects/rtkit;
descriptions = "A daemon that hands out real-time priority to processes";
platforms = stdenv.lib.platforms.linux;
};
}