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

Commits on Oct 31, 2018

  1. openjpeg: adding patch for CVE-2018-7648

    stammon authored and c0bw3b committed Oct 31, 2018
    Copy the full SHA
    a41be02 View commit details

Commits on Nov 6, 2018

  1. Merge pull request #49550 from c0bw3b/sec/1803/openjpeg

    [18.03] openjpeg: adding patch for CVE-2018-7648
    c0bw3b authored Nov 6, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    ruyadorno Ruy Adorno
    Copy the full SHA
    003af0c View commit details
Showing with 8 additions and 0 deletions.
  1. +8 −0 pkgs/development/libraries/openjpeg/2.1.nix
8 changes: 8 additions & 0 deletions pkgs/development/libraries/openjpeg/2.1.nix
Original file line number Diff line number Diff line change
@@ -5,4 +5,12 @@ callPackage ./generic.nix (args // rec {
branch = "2.3";
revision = "v${version}";
sha256 = "08plxrnfl33sn2vh5nwbsngyv6b1sfpplvx881crm1v1ai10m2lz";

patches = [
(fetchpatch {
name = "CVE-2018-7648.patch";
url = "https://github.com/uclouvain/openjpeg/commit/cc3824767bde397fedb8a1ae4786a222ba860c8d.patch";
sha256 = "1j5nxmlgyfkxldk2f1ij6h850xw45q3b5brxqa04dxsfsv8cdj5j";
})
];
})