forked from mirrors/nixpkgs
graphviz: patch CVE-2020-18032
This commit is contained in:
parent
5658fadedb
commit
b4e8099795
|
@ -21,7 +21,14 @@ let
|
|||
buildCommand = "sed s/dot_root/agroot/g ${raw_patch} > $out";
|
||||
};
|
||||
# 2.42 has the patch included
|
||||
patches = optional (lib.versionOlder version "2.42") patchToUse;
|
||||
patches = optional (lib.versionOlder version "2.42") patchToUse
|
||||
++ optionals (lib.versionOlder version "2.46.0") [
|
||||
(fetchpatch {
|
||||
name = "CVE-2020-18032.patch";
|
||||
url = "https://gitlab.com/graphviz/graphviz/-/commit/784411ca3655c80da0f6025ab20634b2a6ff696b.patch";
|
||||
sha256 = "1nkw9ism8lkfvxsp5fh95i2l5s5cbjsidbb3g1kjfv10rxkyb41m";
|
||||
})
|
||||
];
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
|
Loading…
Reference in a new issue