Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2ee9a4fb97d8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f39bdc3de717
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 4, 2021

  1. tcpreplay: 4.3.3 -> 4.3.4

    dotlambda authored and Ma27 committed May 4, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    isaacs isaacs
    Copy the full SHA
    f39bdc3 View commit details
Showing with 5 additions and 9 deletions.
  1. +5 −9 pkgs/tools/networking/tcpreplay/default.nix
14 changes: 5 additions & 9 deletions pkgs/tools/networking/tcpreplay/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "tcpreplay";
version = "4.3.3";
version = "4.3.4";

src = fetchurl {
url = "https://github.com/appneta/tcpreplay/releases/download/v${version}/tcpreplay-${version}.tar.gz";
sha256 = "1plgjm3dr9rr5q71s7paqk2wgrvkihbk2yrf9g3zaks3m750497d";
sha256 = "sha256-7gZTEIBsIuL9NvAU4euzMbmKfsTblY6Rw9nL2gZA2Sw=";
};

buildInputs = [ libpcap ];
@@ -23,13 +23,9 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A suite of utilities for editing and replaying network traffic";
homepage = "http://tcpreplay.appneta.com/";
license = with licenses; [ bsd3 gpl3 ];
homepage = "https://tcpreplay.appneta.com/";
license = with licenses; [ bsdOriginalUC gpl3Only ];
maintainers = with maintainers; [ eleanor ];
platforms = platforms.linux;
knownVulnerabilities = [
"CVE-2020-24265" # https://github.com/appneta/tcpreplay/issues/616
"CVE-2020-24266" # https://github.com/appneta/tcpreplay/issues/617
];
platforms = platforms.unix;
};
}