tcpreplay: 4.3.3 -> 4.3.4

https://github.com/appneta/tcpreplay/releases/tag/v4.3.4

+4 -8
+4 -8
pkgs/tools/networking/tcpreplay/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tcpreplay"; 5 - version = "4.3.3"; 5 + version = "4.3.4"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/appneta/tcpreplay/releases/download/v${version}/tcpreplay-${version}.tar.gz"; 9 - sha256 = "1plgjm3dr9rr5q71s7paqk2wgrvkihbk2yrf9g3zaks3m750497d"; 9 + sha256 = "sha256-7gZTEIBsIuL9NvAU4euzMbmKfsTblY6Rw9nL2gZA2Sw="; 10 10 }; 11 11 12 12 buildInputs = [ libpcap ] ··· 27 27 28 28 meta = with lib; { 29 29 description = "A suite of utilities for editing and replaying network traffic"; 30 - homepage = "http://tcpreplay.appneta.com/"; 31 - license = with licenses; [ bsd3 gpl3 ]; 30 + homepage = "https://tcpreplay.appneta.com/"; 31 + license = with licenses; [ bsdOriginalUC gpl3Only ]; 32 32 maintainers = with maintainers; [ eleanor ]; 33 33 platforms = platforms.unix; 34 - knownVulnerabilities = [ 35 - "CVE-2020-24265" # https://github.com/appneta/tcpreplay/issues/616 36 - "CVE-2020-24266" # https://github.com/appneta/tcpreplay/issues/617 37 - ]; 38 34 }; 39 35 }