1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "${pname}-${version}";
11 sha256 = "1wdw6fnf9a01xfjhdah3mn8bp1bvahf2lfq74i6hk5b2cagkppyp";
14 makeFlags = [ "DESTDIR=$(out)" "DESTPREFIX=" ];
17 description = "Query or alter a process' scheduling policy under Linux";
18 mainProgram = "schedtool";
19 homepage = "https://freequaos.host.sk/schedtool/";
20 license = licenses.gpl2Only;
21 platforms = platforms.linux;
22 maintainers = with maintainers; [ abbradar ];