diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-09-11 19:28:11 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-09-11 19:28:11 +0300 |
commit | 96ca9558928f4ffc9a99a94059fcd93d0a9de761 (patch) | |
tree | 4c89ece6605c439b8c3bf4531f4c9fcde8bf7245 /packages/throttled.nix | |
parent | 2022-09-10 (diff) |
2022-09-11
Diffstat (limited to '')
-rw-r--r-- | packages/throttled.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/throttled.nix b/packages/throttled.nix index ff896cf..1c0f853 100644 --- a/packages/throttled.nix +++ b/packages/throttled.nix @@ -1,25 +1,25 @@ { fetchFromGitHub, kmod, - python3, + python3Packages, stdenv, }: stdenv.mkDerivation rec { pname = "throttled"; - version = "unstable-2022-06-30"; + version = "git"; src = fetchFromGitHub { owner = "erpalma"; repo = pname; - rev = "ab9641a93a409bdc7fca6889ff23ca5a685e5a77"; - hash = "sha256-Zd+rTsVDkw9mq6k2OkMy+HxyYsl3ADy1fEM/1e/jxAs="; + rev = "1dd726672f0b11b813d4c7b63e0157becde7a013"; + hash = "sha256-0MsPp6y4r/uZB2SplKV+SAiJoxIs2jgOQmQoQQ2ZKwI="; }; - nativeBuildInputs = with python3.pkgs; [wrapPython]; + nativeBuildInputs = with python3Packages; [wrapPython]; pythonPath = - (with python3.pkgs; [configparser dbus-python pygobject3]) - ++ [kmod]; + [kmod] + ++ (with python3Packages; [configparser dbus-python pygobject3]); installPhase = '' runHook preInstall |