rsync: fix CVE-2017-16548

This commit is contained in:
Andreas Rammhold
2017-12-09 13:10:47 +01:00
parent 0a41fc6b7c
commit 3d2df41a8f
3 changed files with 17 additions and 10 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, libiconv, zlib, popt
{ stdenv, fetchurl, fetchpatch, perl, libiconv, zlib, popt
, enableACLs ? true, acl ? null
, enableCopyDevicesPatch ? false
}:
@@ -6,7 +6,7 @@
assert enableACLs -> acl != null;
let
base = import ./base.nix { inherit stdenv fetchurl; };
base = import ./base.nix { inherit stdenv fetchurl fetchpatch; };
in
stdenv.mkDerivation rec {
name = "rsync-${base.version}";