nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

iperf: 3.4 -> 3.5

+2 -2
+2 -2
pkgs/tools/networking/iperf/3.nix
··· 1 1 { stdenv, fetchurl, openssl, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "iperf-3.4"; 4 + name = "iperf-3.5"; 5 5 6 6 src = fetchurl { 7 7 url = "http://downloads.es.net/pub/iperf/${name}.tar.gz"; 8 - sha256 = "04ciywjhklzfrnp40675ssnkqxv90ad4v56i8vh8bpsiswr86lki"; 8 + sha256 = "1m9cyycv70s8nlbgr1lqwr155ixk17np0nzqgwaw3f51vkndk6sk"; 9 9 }; 10 10 11 11 buildInputs = [ openssl ];