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: 99b1188ee19c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 79e768eeb499
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 1, 2020

  1. zenpower: 0.1.5 -> 0.1.10

    alexbakker authored and alyssais committed Apr 1, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    79e768e View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/os-specific/linux/zenpower/default.nix
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/zenpower/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, kernel, fetchFromGitHub }:
{ stdenv, kernel, fetchFromGitHub, fetchpatch }:

stdenv.mkDerivation rec {
pname = "zenpower";
version = "0.1.5";
version = "0.1.10";

src = fetchFromGitHub {
owner = "ocerman";
repo = "zenpower";
rev = "v${version}";
sha256 = "1ay1q666bc7czgc95invw523c0ds2gj85wxypc3wi418vfaha5vy";
sha256 = "1fqqaj7fq49yi2yip518036w80r9w7mkxpbkrxqzlydpma1x9v5m";
};

hardeningDisable = [ "pic" ];
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/ocerman/zenpower";
license = licenses.gpl2;
maintainers = with maintainers; [ alexbakker ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
broken = versionOlder kernel.version "4.14";
};
}