mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
32 lines
753 B
Nix
32 lines
753 B
Nix
{ stdenv, fetchurl, libowfat, zlib, openssl }:
|
|
|
|
let
|
|
version = "0.15";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "gatling";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.fefe.de/gatling/${pname}-${version}.tar.xz";
|
|
sha256 = "194srqyja3pczpbl6l169zlvx179v7ln0m6yipmhvj6hrv82k8vg";
|
|
};
|
|
|
|
buildInputs = [ libowfat zlib openssl.dev ];
|
|
|
|
configurePhase = ''
|
|
substituteInPlace Makefile --replace "/usr/local" "$out"
|
|
substituteInPlace GNUmakefile --replace "/opt/diet" "$out"
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make gatling
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A high performance web server";
|
|
homepage = "http://www.fefe.de/gatling/";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|