Merge pull request #307713 from r-ryantm/auto-update/clamav

clamav: 1.3.0 -> 1.3.1

authored by Weijia Wang and committed by GitHub d6b2873e 56cafa47

+4 -3
+2 -2
pkgs/tools/security/clamav/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "clamav"; 9 - version = "1.3.0"; 9 + version = "1.3.1"; 10 10 11 11 src = fetchurl { 12 12 url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz"; 13 - hash = "sha256-CoamSWMg2RV2A3szEBEZr2/Y1bkQYM0xajqcIp6WBKo="; 13 + hash = "sha256-EqMDW/JvVfceMQalGl+o17dEVy35imOSCpz/h2p9zOQ="; 14 14 }; 15 15 16 16 patches = [
+2 -1
pkgs/top-level/all-packages.nix
··· 7043 7043 7044 7044 ckb-next = libsForQt5.callPackage ../tools/misc/ckb-next { }; 7045 7045 7046 - clamav = darwin.apple_sdk_11_0.callPackage ../tools/security/clamav { 7046 + clamav = callPackage ../tools/security/clamav { 7047 + stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv; 7047 7048 inherit (darwin.apple_sdk_11_0.frameworks) Foundation; 7048 7049 }; 7049 7050