Skip to content

Commit

Permalink
bubblewrap: CVE-2019-12439
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahut authored and fpletz committed Jun 17, 2019
1 parent 3548489 commit 2cdb1ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/tools/admin/bubblewrap/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap, fetchpatch }:

stdenv.mkDerivation rec {
name = "bubblewrap-${version}";
Expand All @@ -9,6 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "1y2bdlxnlr84xcbf31lzirc292c5ak9bd2wvcvh4ppsliih6pjny";
};

patches = [
(fetchpatch {
url = "https://github.com/projectatomic/bubblewrap/commit/efc89e3b939b4bde42c10f065f6b7b02958ed50e.patch";
name = "CVE-2019-12439.patch";
sha256 = "1p2w0ixrr3aca6i26ckmlq8ini4a6kgq53r9f98f7ghvbdlp4dkg";
})
];

nativeBuildInputs = [ libcap libxslt docbook_xsl ];

meta = with stdenv.lib; {
Expand Down

0 comments on commit 2cdb1ed

Please sign in to comment.