mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
39 lines
826 B
Nix
39 lines
826 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, makeWrapper
|
|
, gawk
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cfs-zen-tweaks";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igo95862";
|
|
repo = "cfs-zen-tweaks";
|
|
rev = version;
|
|
hash = "sha256-E3sNWWXm0NEqLCzFccd/nfYby+/b/MVjIHeGlDxV1W4=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace set-cfs-zen-tweaks.sh \
|
|
--replace '$(gawk' '$(${gawk}/bin/gawk'
|
|
'';
|
|
|
|
preFixup = ''
|
|
chmod +x $out/lib/cfs-zen-tweaks/set-cfs-zen-tweaks.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "Tweak Linux CPU scheduler for desktop responsiveness";
|
|
homepage = "https://github.com/igo95862/cfs-zen-tweaks";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
};
|
|
}
|