mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
28 lines
908 B
Nix
28 lines
908 B
Nix
{ fetchurl, stdenv, ant }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jmeter-2.10";
|
|
src = fetchurl {
|
|
url = "http://ftp.unicamp.br/pub/apache//jmeter/binaries/apache-${name}.tgz";
|
|
sha256 = "1ygm0h02sllh4mfl5imj46v80wnbs1x7n88gfjm523ixmgsa0fvy";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|