Skip to content

Commit

Permalink
Merge branch 'staging-19.09' into release-19.09
Browse files Browse the repository at this point in the history
x86_64-linux has rebuilt on Hydra; we probably don't need to wait
with this merge for others.
  • Loading branch information
vcunat committed Feb 3, 2020
2 parents c544d8a + 6cff34d commit a7d55dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
17 changes: 12 additions & 5 deletions pkgs/development/libraries/libxml2/default.nix
Expand Up @@ -18,11 +18,18 @@ in stdenv.mkDerivation rec {
sha256 = "0wd881jzvqayx0ihzba29jl80k06xj9ywp16kxacdqs3064p1ywl";
};

patches = [ (fetchpatch {
name = "CVE-2019-19956"; # Upstream patch
url = "https://gitlab.gnome.org/GNOME/libxml2/commit/5a02583c7e683896d84878bd90641d8d9b0d0549.patch";
sha256 = "05r36wb3jfiqqr595v8y1djb535pk99lvajvsi5rq7x90k8s6g61";
})];
patches = [
(fetchpatch {
name = "CVE-2019-19956"; # Upstream patch
url = "https://gitlab.gnome.org/GNOME/libxml2/commit/5a02583c7e683896d84878bd90641d8d9b0d0549.patch";
sha256 = "05r36wb3jfiqqr595v8y1djb535pk99lvajvsi5rq7x90k8s6g61";
})
(fetchpatch {
name = "CVE-2020-7595.patch";
url = "https://gitlab.gnome.org/GNOME/libxml2/commit/0e1a49c8907645d2e155f0d89d4d9895ac5112b5.patch";
sha256 = "0klvaxkzakkpyq0m44l9xrpn5kwaii194sqsivfm6zhnb9hhl15l";
})
];

outputs = [ "bin" "dev" "out" "man" "doc" ]
++ lib.optional pythonSupport "py"
Expand Down
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/e2fsprogs/default.nix
Expand Up @@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "e2fsprogs";
version = "1.45.3";
version = "1.45.4";

src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
sha256 = "0gcqfnp9h7wgz1vq402kxd2w398vqaim26aq9i722v3lrgh5cm9s";
sha256 = "0jsclghxfzj9qmdd3qqk0gdmkrgjv2gakf8qz9dba37qkj1nk776";
};

outputs = [ "bin" "dev" "out" "man" "info" ];
Expand Down

0 comments on commit a7d55dd

Please sign in to comment.