21f17d69f6
Build-tested on x86_64 Linux & Mac.
29 lines
930 B
Nix
29 lines
930 B
Nix
{ fetchurl, stdenv, ant }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jmeter-2.11";
|
|
src = fetchurl {
|
|
url = "http://archive.apache.org/dist/jmeter/binaries/apache-${name}.tgz";
|
|
sha256 = "1fr3sw06qncb6yygcf2lbnkxma4v1dbigpf39ajrm0isxbpyv944";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp ./* $out/ -R
|
|
'';
|
|
|
|
meta = {
|
|
description = "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;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|