nixpkgs/pkgs/applications/networking/tsung/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.5 KiB
Nix
Raw Normal View History

2021-11-26 21:41:30 +00:00
{ lib
, stdenv
, fetchurl
, makeWrapper
, erlang
, python3
, python3Packages
, perlPackages
, gnuplot
}:
2018-09-12 19:54:21 +01:00
stdenv.mkDerivation rec {
pname = "tsung";
2018-09-12 19:54:21 +01:00
version = "1.7.0";
2021-11-26 21:41:30 +00:00
2018-09-12 19:54:21 +01:00
src = fetchurl {
url = "http://tsung.erlang-projects.org/dist/tsung-${version}.tar.gz";
sha256 = "6394445860ef34faedf8c46da95a3cb206bc17301145bc920151107ffa2ce52a";
};
2021-11-26 21:41:30 +00:00
nativeBuildInputs = [
makeWrapper
];
2018-09-12 19:54:21 +01:00
propagatedBuildInputs = [
erlang
gnuplot
perlPackages.perl
2018-09-12 19:54:21 +01:00
perlPackages.TemplateToolkit
2021-11-26 21:41:30 +00:00
python3
python3Packages.matplotlib
2018-09-12 19:54:21 +01:00
];
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 ]}"
2018-09-12 19:54:21 +01:00
'';
meta = with lib; {
2018-09-12 19:54:21 +01:00
homepage = "http://tsung.erlang-projects.org/";
description = "A high-performance benchmark framework for various protocols including HTTP, XMPP, LDAP, etc";
2018-09-12 19:54:21 +01:00
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.
'';
2021-11-26 21:41:30 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ uskudnik ];
2018-09-12 19:54:21 +01:00
platforms = platforms.unix;
};
}