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: 8cc5d3a84a8b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a74b08d71a37
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

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    1f4c858 View commit details

Commits on Nov 14, 2018

  1. Merge pull request #49549 from c0bw3b/sec/1809/openjpeg

    [18.09] openjpeg: adding patch for CVE-2018-7648
    c0bw3b authored Nov 14, 2018
    Copy the full SHA
    a74b08d 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";
})
];
})