My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/schedtool/default.nix

23 lines
612 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "schedtool";
version = "1.3.0";
src = fetchFromGitHub {
owner = "freequaos";
repo = "schedtool";
rev = "${pname}-${version}";
sha256 = "1wdw6fnf9a01xfjhdah3mn8bp1bvahf2lfq74i6hk5b2cagkppyp";
};
makeFlags = [ "DESTDIR=$(out)" "DESTPREFIX=" ];
meta = with lib; {
description = "Query or alter a process' scheduling policy under Linux";
homepage = "https://freequaos.host.sk/schedtool/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}