mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 07:47:41 +00:00
nzbget: add buffer overflow patch
This commit is contained in:
parent
43f4738f8b
commit
087be5ef73
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, autoreconfHook
|
||||
, boost
|
||||
, pkg-config
|
||||
@ -27,6 +28,14 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
hash = "sha256-JqC82zpsIqRYB7128gTSOQMWJFR/t63NJXlPgGqP0jE=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# add nzbget-ng patch not in nzbgetcom for buffer overflow issue -- see https://github.com/nzbget-ng/nzbget/pull/43
|
||||
(fetchpatch {
|
||||
url = "https://github.com/nzbget-ng/nzbget/commit/8fbbbfb40003c6f32379a562ce1d12515e61e93e.patch";
|
||||
hash = "sha256-mgI/twEoMTFMFGfH1/Jm6mE9u9/CE6RwELCSGx5erUo=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
|
Loading…
Reference in New Issue
Block a user