summary refs log tree commit diff
path: root/pkgs/applications/networking/netperf
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-10-25 20:49:22 +0000
committerShea Levy <shea@shealevy.com>2011-10-25 20:49:22 +0000
commit892889cf358e7858fee32e1c7fc83c53650ea706 (patch)
tree8253382938f8daf03faf3adbdb45575aeaf6e222 /pkgs/applications/networking/netperf
parent621e87f821f9f5d7af243441d7816d196977857e (diff)
downloadnixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.tar
nixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.tar.gz
nixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.tar.bz2
nixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.tar.lz
nixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.tar.xz
nixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.tar.zst
nixpkgs-892889cf358e7858fee32e1c7fc83c53650ea706.zip
Add netperf
I will add meta later, I promise, I just need to use this now

svn path=/nixpkgs/trunk/; revision=30026
Diffstat (limited to 'pkgs/applications/networking/netperf')
-rw-r--r--pkgs/applications/networking/netperf/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/applications/networking/netperf/default.nix b/pkgs/applications/networking/netperf/default.nix
new file mode 100644
index 00000000000..7ef6a86c5eb
--- /dev/null
+++ b/pkgs/applications/networking/netperf/default.nix
@@ -0,0 +1,11 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation rec {
+  name = "netperf-2.5.0";
+
+  src = fetchurl {
+    url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2";
+    sha256 = "1l06bb99b4wfnmq247b8rvp4kn3w6bh1m46ri4d74z22li7br545";
+  };
+}
+