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

Commits on Jun 28, 2018

  1. lynis: 2.6.4 -> 2.6.5

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/lynis/versions.
    
    These checks were done:
    
    - built on NixOS
    - /nix/store/nbrk6fjsbanqgx89v0mwgq9x6cqkwx6p-lynis-2.6.5/bin/lynis passed the binary check.
    - /nix/store/nbrk6fjsbanqgx89v0mwgq9x6cqkwx6p-lynis-2.6.5/bin/.lynis-wrapped passed the binary check.
    - 2 of 2 passed binary check by having a zero exit code.
    - 2 of 2 passed binary check by having the new version present in output.
    - found 2.6.5 with grep in /nix/store/nbrk6fjsbanqgx89v0mwgq9x6cqkwx6p-lynis-2.6.5
    - directory tree listing: https://gist.github.com/4ec2eae2a408cbec08c7f34ea3d85e66
    - du listing: https://gist.github.com/f8d9c962be7ba2b02df3ad9111a622ae
    R. RyanTM committed Jun 28, 2018
    Copy the full SHA
    2208767 View commit details

Commits on Jul 1, 2018

  1. Merge pull request #42692 from r-ryantm/auto-update/lynis

    lynis: 2.6.4 -> 2.6.5
    nlewo authored Jul 1, 2018
    Copy the full SHA
    deb82d8 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/security/lynis/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/security/lynis/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
pname = "lynis";
version = "2.6.4";
version = "2.6.5";
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "CISOfy";
repo = "${pname}";
rev = "${version}";
sha256 = "1p449gsackcavw5h9yn0ckk1fkakx9d55izi22gh8wfvijdfhw10";
sha256 = "0q8irq7hmb0nalmc8xn13d08j0qf6sxfiq2c9s7z1c0gd357gmh9";
};

nativeBuildInputs = [ makeWrapper perl ];