nixpkgs/pkgs/development/tools/misc/sipp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
867 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, libpcap, cmake, openssl, git, lksctp-tools }:
2015-01-19 14:19:36 +00:00
stdenv.mkDerivation rec {
version = "3.6.1";
pname = "sipp";
2015-01-19 14:19:36 +00:00
2019-12-26 15:48:11 +00:00
src = fetchurl {
url = "https://github.com/SIPp/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-alYOg6/5gvMx3byt+zvVMMWJbNW3V91utoITPMhg7LE=";
2015-01-19 14:19:36 +00:00
};
2019-12-26 15:48:11 +00:00
postPatch = ''
cp version.h src/version.h
2015-01-19 14:19:36 +00:00
'';
cmakeFlags = [
"-DUSE_GSL=1"
"-DUSE_PCAP=1"
"-DUSE_SSL=1"
"-DUSE_SCTP=${if stdenv.isLinux then "1" else "0"}"
2017-03-10 09:46:22 +00:00
];
enableParallelBuilding = true;
2017-03-10 09:46:22 +00:00
nativeBuildInputs = [ cmake git ];
buildInputs = [ ncurses libpcap openssl ]
++ lib.optional (stdenv.isLinux) lksctp-tools;
2017-03-10 09:46:22 +00:00
meta = with lib; {
homepage = "http://sipp.sf.net";
2017-03-10 09:46:22 +00:00
description = "The SIPp testing tool";
license = licenses.gpl3;
platforms = platforms.unix;
};
2015-01-19 14:19:36 +00:00
}