summary refs log tree commit diff
path: root/pkgs/tools/misc/bandwidth/default.nix
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-04-02 02:16:31 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-04-02 02:55:23 +0200
commit838217332baed839667a99fd79323eff3099c849 (patch)
tree7b2b3bdd49ccf38365c94f51057a795b1f4c200a /pkgs/tools/misc/bandwidth/default.nix
parent6a4ca7e43a54fccc6ecbb0f195e5123098fc4976 (diff)
downloadnixpkgs-838217332baed839667a99fd79323eff3099c849.tar
nixpkgs-838217332baed839667a99fd79323eff3099c849.tar.gz
nixpkgs-838217332baed839667a99fd79323eff3099c849.tar.bz2
nixpkgs-838217332baed839667a99fd79323eff3099c849.tar.lz
nixpkgs-838217332baed839667a99fd79323eff3099c849.tar.xz
nixpkgs-838217332baed839667a99fd79323eff3099c849.tar.zst
nixpkgs-838217332baed839667a99fd79323eff3099c849.zip
bandwidth: 1.1b -> 1.2.0
Diffstat (limited to 'pkgs/tools/misc/bandwidth/default.nix')
-rw-r--r--pkgs/tools/misc/bandwidth/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/tools/misc/bandwidth/default.nix b/pkgs/tools/misc/bandwidth/default.nix
index ff5e47336d3..853c619859d 100644
--- a/pkgs/tools/misc/bandwidth/default.nix
+++ b/pkgs/tools/misc/bandwidth/default.nix
@@ -10,11 +10,13 @@ let
     else null;
 in
 stdenv.mkDerivation rec {
-  name = "bandwidth-1.1b";
+  name = "bandwidth-${version}";
+  version = "1.2.0";
 
   src = fetchurl {
-    url = "http://zsmith.co/archives/${name}.tar.gz";
-    sha256 = "01c3ca0x3rh65j1s2g6cg5xr9fvm0lp2wpmv71vhz55xwqqqmiz8";
+    url = "https://mutineer.org/file.php?id=ee10698c6a675ece26f08ddb5e6001323d6305c1&p=bandwidth";
+    name = "${name}.tar.gz";
+    sha256 = "1jq6a4n77gcx68bkr8l79agsmgv8saw9nv183297gnah1g67nvw6";
   };
 
   buildInputs = [ nasm ];
@@ -30,9 +32,9 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     homepage = https://zsmith.co/bandwidth.html;
-    description = "and artificial benchmark for identifying weaknesses in the memory subsystem";
+    description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
     license = licenses.mit;
     platforms = platforms.unix;
-    maintainers = with maintainers; [ wkennington ];
+    maintainers = with maintainers; [ nckx wkennington ];
   };
 }