Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2586d9142380
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a7b1d6b92fd3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 12, 2020

  1. throttled: 0.7 -> 0.8

    r-ryantm committed Nov 12, 2020
    Copy the full SHA
    5c08c8e View commit details

Commits on Nov 13, 2020

  1. Merge pull request #103571 from r-ryantm/auto-update/throttled

    throttled: 0.7 -> 0.8
    marsam authored Nov 13, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a7b1d6b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/system/throttled/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/system/throttled/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "throttled";
version = "0.7";
version = "0.8";

src = fetchFromGitHub {
owner = "erpalma";
repo = pname;
rev = "v${version}";
sha256 = "1y1sczvj2qc8ml9i1rdzr8hklvci9bdphm3mmri2ncaqys8wdbh4";
sha256 = "0qw124gdgjqij3xhgg8j1mdsg6j0xg340as5qf8hd3gwc38sqi9x";
};

nativeBuildInputs = [ python3Packages.wrapPython ];