2013-10-07 02:58:24 +01:00
|
|
|
{ fetchurl, stdenv, ant }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-06-01 14:37:48 +01:00
|
|
|
name = "jmeter-2.11";
|
2013-10-07 02:58:24 +01:00
|
|
|
src = fetchurl {
|
2013-11-23 14:06:07 +00:00
|
|
|
url = "http://ftp.unicamp.br/pub/apache//jmeter/binaries/apache-${name}.tgz";
|
2014-06-01 14:37:48 +01:00
|
|
|
sha256 = "1fr3sw06qncb6yygcf2lbnkxma4v1dbigpf39ajrm0isxbpyv944";
|
2013-10-07 02:58:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp ./* $out/ -R
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Apache JMeter is a 100% pure Java desktop application designed to load test functional behavior and measure performance.";
|
|
|
|
longDescription = ''
|
|
|
|
The Apache JMeter desktop application is open source software, a 100%
|
|
|
|
pure Java application designed to load test functional behavior and
|
|
|
|
measure performance. It was originally designed for testing Web
|
|
|
|
Applications but has since expanded to other test functions.
|
|
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
|
|
|
priority = 1;
|
|
|
|
};
|
|
|
|
}
|