about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2020-02-21 08:25:39 +0100
committerGitHub <noreply@github.com>2020-02-21 08:25:39 +0100
commite0cf1c71c4a85512f76293c747af1d2aad2e9177 (patch)
tree04a2be9b3fe79bc8de85fe914ca424925e0d5bac
parent0bffd2150e5bbd9671bf98817a72e87ae41bc0ed (diff)
parenta87baff257b8f9c4aa0ee8a934261cd370b6ee51 (diff)
downloadnixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.tar
nixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.tar.gz
nixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.tar.bz2
nixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.tar.lz
nixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.tar.xz
nixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.tar.zst
nixlib-e0cf1c71c4a85512f76293c747af1d2aad2e9177.zip
Merge pull request #80689 from lovesegfault/throttled-0.7
throttled: 0.6 -> 0.7
-rw-r--r--pkgs/tools/system/throttled/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/system/throttled/default.nix b/pkgs/tools/system/throttled/default.nix
index 4f52b5e09455..02ff75113824 100644
--- a/pkgs/tools/system/throttled/default.nix
+++ b/pkgs/tools/system/throttled/default.nix
@@ -2,24 +2,24 @@
 
 stdenv.mkDerivation rec {
   pname = "throttled";
-  version = "0.6";
+  version = "0.7";
 
   src = fetchFromGitHub {
     owner = "erpalma";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1icb2288pj25vbdnd16zvisw9c01hp8vkk25ilkc74gy76xhpcs4";
+    sha256 = "1y1sczvj2qc8ml9i1rdzr8hklvci9bdphm3mmri2ncaqys8wdbh4";
   };
 
   nativeBuildInputs = [ python3Packages.wrapPython ];
 
-  pythonPath = with python3Packages; [ 
+  pythonPath = with python3Packages; [
     configparser
     dbus-python
     pygobject3
   ];
 
-  # The upstream unit both assumes the install location, and tries to run in a virtualenv 
+  # The upstream unit both assumes the install location, and tries to run in a virtualenv
   postPatch = ''sed -e 's|ExecStart=.*|ExecStart=${placeholder "out"}/bin/lenovo_fix.py|' -i systemd/lenovo_fix.service'';
 
   installPhase = ''