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

Commits on Dec 4, 2017

  1. vulnix: 1.3.4 -> 1.4.0

    The new vulnix release contains auto-detection of CVE patches.
    Christian Kauhaus committed Dec 4, 2017
    Copy the full SHA
    10c2dce View commit details
  2. Merge pull request #32301 from ckauhaus/submit/vulnix-1.4.0

    vulnix: 1.3.4 -> 1.4.0
    orivej authored Dec 4, 2017
    Copy the full SHA
    f1e1617 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/security/vulnix/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/security/vulnix/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@
pythonPackages.buildPythonApplication rec {
name = "${pname}-${version}";
pname = "vulnix";
version = "1.3.4";
version = "1.4.0";

src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "1js1i86pgkkqc9yzp1rck7rmaz79klv4048r9z7v56fam0a6sg05";
sha256 = "19kfqxlrigrgwn74x06m70ar2fhyhic5kfmdanjwjcbaxblha3l8";
};

buildInputs = with pythonPackages; [ flake8 pytest pytestcov ];