1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/networking/jmeter/default.nix

29 lines
930 B
Nix
Raw Normal View History

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 {
2014-11-18 14:43:09 +00:00
url = "http://archive.apache.org/dist/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 = "A 100% pure Java desktop application designed to load test functional behavior and measure performance";
2013-10-07 02:58:24 +01:00
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;
2013-10-07 02:58:24 +01:00
};
}