summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2022-05-12 18:44:04 -0400
committerAndrew Marshall <andrew@johnandrewmarshall.com>2022-05-13 12:53:57 -0400
commit13d40c02cfb48bd8ee9ab3e3cb642c14e181a9fc (patch)
treeb656af8523ce39d47a034298d2d17c447917962f
parent184892dce5e68a19eee342f722a432ff42279e6a (diff)
netperf: 20180613 -> 20210121
Upstream diff is just the license change.
-rw-r--r--pkgs/applications/networking/netperf/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/netperf/default.nix b/pkgs/applications/networking/netperf/default.nix
index fe5588d81f88..880ebdd2d4ef 100644
--- a/pkgs/applications/networking/netperf/default.nix
+++ b/pkgs/applications/networking/netperf/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation {
pname = "netperf";
- version = "20180613";
+ version = "20210121";
src = fetchFromGitHub {
owner = "HewlettPackard";
repo = "netperf";
- rev = "bcb868bde7f0203bbab69609f65d4088ba7398db";
- sha256 = "1wbbgdvhadd3qs3afv6i777argdpcyxkwz4yv6aqp223n8ki6dm8";
+ rev = "3bc455b23f901dae377ca0a558e1e32aa56b31c4";
+ sha256 = "s4G1ZN+6LERdEMDkc+12ZQgTi6K+ppUYUCGn4faCS9c=";
};
buildInputs = lib.optional (with stdenv.hostPlatform; isx86 && isLinux) libsmbios;
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
meta = {
description = "Benchmark to measure the performance of many different types of networking";
homepage = "http://www.netperf.org/netperf/";
- license = "Hewlett-Packard BSD-like license";
+ license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.mmlb ];