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: a3358eeeb4c6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b8b404eb7415
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 4, 2020

  1. Copy the full SHA
    cc41ff0 View commit details

Commits on Apr 6, 2020

  1. Copy the full SHA
    6689065 View commit details
  2. Merge pull request #84282 from r-ryantm/auto-update/chipsec

    linuxPackages_hardened.chipsec: 1.4.7 -> 1.4.9
    JohnAZoidberg authored Apr 6, 2020
    Copy the full SHA
    b8b404e View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/security/chipsec/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/security/chipsec/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@
, kernel ? null, withDriver ? false }:
pythonPackages.buildPythonApplication rec {
pname = "chipsec";
version = "1.4.7";
version = "1.4.9";

src = fetchFromGitHub {
owner = "chipsec";
repo = "chipsec";
rev = version;
sha256 = "11qi4m4hqkylf1wd7f921r0p7xg5prpmfkmb7l9nn7sb95zz0sjr";
sha256 = "1p6w8294w5z2f4jwc22mqaggv5qajvmf9iifv7fl7wdz3wsvskrk";
};

nativeBuildInputs = [
@@ -33,7 +33,7 @@ pythonPackages.buildPythonApplication rec {
Mac OS X and UEFI shell.
'';
license = licenses.gpl2;
homepage = https://github.com/chipsec/chipsec;
homepage = "https://github.com/chipsec/chipsec";
maintainers = with maintainers; [ johnazoidberg ];
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
};