lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rpcbind: Patch for CVE-2017-8779

+6 -1
+6 -1
pkgs/servers/rpcbind/default.nix
··· 1 - { fetchurl, stdenv, pkgconfig, libnsl, libtirpc 1 + { fetchurl, stdenv, pkgconfig, libnsl, libtirpc, fetchpatch 2 2 , useSystemd ? true, systemd }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 13 13 patches = [ 14 14 ./sunrpc.patch 15 + (fetchpatch { 16 + name = "CVE-2017-8779.patch"; 17 + url = "https://raw.githubusercontent.com/guidovranken/rpcbomb/e6da9e489aa8ad000b0ad5ac9abc5b4eefc3a769/rpcbind_patch.txt"; 18 + sha256 = "0w231w8fxihgrn526np078j3vbj3ylvjvxjmfpjvqhga5zg821ab"; 19 + }) 15 20 ]; 16 21 17 22 buildInputs = [ libnsl libtirpc ]