aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/networking/tsung
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/applications/networking/tsung
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/networking/tsung')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/networking/tsung/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/networking/tsung/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/networking/tsung/default.nix
new file mode 100644
index 000000000000..7b142249687d
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/networking/tsung/default.nix
@@ -0,0 +1,50 @@
+{ fetchurl, stdenv, lib, makeWrapper,
+ erlang,
+ python2, python2Packages,
+ perlPackages,
+ gnuplot }:
+
+stdenv.mkDerivation rec {
+ pname = "tsung";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "http://tsung.erlang-projects.org/dist/tsung-${version}.tar.gz";
+ sha256 = "6394445860ef34faedf8c46da95a3cb206bc17301145bc920151107ffa2ce52a";
+ };
+
+ buildInputs = [ makeWrapper ];
+ propagatedBuildInputs = [
+ erlang
+ gnuplot
+ perlPackages.perl
+ perlPackages.TemplateToolkit
+ python2
+ python2Packages.matplotlib
+ ];
+
+
+ postFixup = ''
+ # Make tsung_stats.pl accessible
+ # Leaving .pl at the end since all of tsung documentation is refering to it
+ # as tsung_stats.pl
+ ln -s $out/lib/tsung/bin/tsung_stats.pl $out/bin/tsung_stats.pl
+
+ # Add Template Toolkit and gnuplot to tsung_stats.pl
+ wrapProgram $out/bin/tsung_stats.pl \
+ --prefix PATH : ${lib.makeBinPath [ gnuplot ]} \
+ --set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.TemplateToolkit ]}"
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "http://tsung.erlang-projects.org/";
+ description = "A high-performance benchmark framework for various protocols including HTTP, XMPP, LDAP, etc";
+ longDescription = ''
+ Tsung is a distributed load testing tool. It is protocol-independent and
+ can currently be used to stress HTTP, WebDAV, SOAP, PostgreSQL, MySQL,
+ AMQP, MQTT, LDAP and Jabber/XMPP servers.
+ '';
+ license = licenses.gpl2;
+ maintainers = [ maintainers.uskudnik ];
+ platforms = platforms.unix;
+ };
+}