2020-04-11 23:09:25 +02:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch
|
|
|
|
, meson, ninja, pkgconfig, unixtools
|
|
|
|
, dbus, libcap, polkit, systemd
|
|
|
|
}:
|
2011-07-26 16:12:33 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-11 22:21:39 +02:00
|
|
|
pname = "rtkit";
|
2020-04-11 23:09:25 +02:00
|
|
|
version = "0.13";
|
2016-10-05 10:48:57 +02:00
|
|
|
|
2020-04-11 23:09:25 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "heftig";
|
|
|
|
repo = "rtkit";
|
|
|
|
rev = "c295fa849f52b487be6433e69e08b46251950399";
|
|
|
|
sha256 = "0yfsgi3pvg6dkizrww1jxpkvcbhzyw9110n1dypmzq0c5hlzjxcd";
|
2011-07-26 16:12:33 +02:00
|
|
|
};
|
|
|
|
|
2016-10-05 10:48:57 +02:00
|
|
|
patches = [
|
2016-10-05 18:07:12 +02:00
|
|
|
(fetchpatch {
|
2020-04-11 23:09:25 +02:00
|
|
|
url = "https://github.com/heftig/rtkit/commit/7d62095b94f8df3891c984a1535026d2658bb177.patch";
|
|
|
|
sha256 = "17acv549zqcgh7sgprfagbf6drqsr0zdwvf1dsqda7wlqc2h9zn7";
|
2016-10-05 18:07:12 +02:00
|
|
|
})
|
2018-04-12 16:02:52 +02:00
|
|
|
|
|
|
|
(fetchpatch {
|
2020-04-11 23:09:25 +02:00
|
|
|
url = "https://github.com/heftig/rtkit/commit/98f70edd8f534c371cb4308b9720739c5178918d.patch";
|
|
|
|
sha256 = "18mnjjsdjfr184nkzi01xyphpdngi31ry4bmkv9ysjxf9wilv4nl";
|
2018-04-12 16:02:52 +02:00
|
|
|
})
|
2016-10-05 10:48:57 +02:00
|
|
|
];
|
|
|
|
|
2020-04-11 23:09:25 +02:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig unixtools.xxd ];
|
|
|
|
buildInputs = [ dbus libcap polkit systemd ];
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dinstalled_tests=false"
|
|
|
|
|
|
|
|
"-Ddbus_systemservicedir=${placeholder "out"}/share/dbus-1/system-services"
|
|
|
|
"-Ddbus_interfacedir=${placeholder "out"}/share/dbus-1/interfaces"
|
|
|
|
"-Ddbus_rulesdir=${placeholder "out"}/etc/dbus-1/system.d"
|
|
|
|
"-Dpolkit_actiondir=${placeholder "out"}/share/polkit-1/actions"
|
|
|
|
"-Dsystemd_systemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
|
|
];
|
2014-04-18 12:21:20 +02:00
|
|
|
|
2018-08-30 21:54:56 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-11 23:09:25 +02:00
|
|
|
homepage = "https://github.com/heftig/rtkit";
|
2017-04-29 10:45:20 +02:00
|
|
|
description = "A daemon that hands out real-time priority to processes";
|
2018-08-30 21:54:56 +02:00
|
|
|
license = with licenses; [ gpl3 bsd0 ]; # lib is bsd license
|
|
|
|
platforms = platforms.linux;
|
2011-07-26 16:12:33 +02:00
|
|
|
};
|
|
|
|
}
|