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

Commits on Oct 29, 2020

  1. checksec: 2.2.3 -> 2.4.0

    r-ryantm committed Oct 29, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    MylesBorins Myles Borins
    Copy the full SHA
    cb28da0 View commit details

Commits on Nov 1, 2020

  1. Merge pull request #102026 from r-ryantm/auto-update/checksec

    checksec: 2.2.3 -> 2.4.0
    thoughtpolice authored Nov 1, 2020
    Copy the full SHA
    c1a8104 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/os-specific/linux/checksec/default.nix
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/checksec/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@

stdenv.mkDerivation rec {
pname = "checksec";
version = "2.2.3";
version = "2.4.0";

src = fetchFromGitHub {
owner = "slimm609";
repo = "checksec.sh";
rev = version;
sha256 = "0hw8bd7dj71m1ml9zvfab2j87jacs542z7a89nziapckmg6kmh6f";
sha256 = "1gbbq85d3g3mnm3xvgvi2085aba7qc3cmsbwn76al50ax1518j2q";
};

patches = [ ./0001-attempt-to-modprobe-config-before-checking-kernel.patch ];