as31: Apply Debian patch for CVE-2012-0808 (#18904)
This commit is contained in:
parent
53c660dbc8
commit
9f7d9def4c
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, yacc }:
|
{ stdenv, fetchpatch, fetchurl, yacc }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -14,6 +14,15 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
buildInputs = [ yacc ];
|
buildInputs = [ yacc ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# CVE-2012-0808
|
||||||
|
(fetchpatch {
|
||||||
|
name = "as31-mkstemps.patch";
|
||||||
|
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=655496;filename=as31-mkstemps.patch;msg=5";
|
||||||
|
sha256 = "0iia4wa8m141bwz4588yxb1dp2qwhapcii382sncm6jvwyngwh21";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
chmod +x ./configure
|
chmod +x ./configure
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue