biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / sipp / default.nix
blob43dcd2aea9b4bf0ad8168157358a2cf086da8f43
1 { lib, stdenv, fetchurl, ncurses, libpcap, cmake, openssl, git, lksctp-tools }:
3 stdenv.mkDerivation rec {
4   version = "3.6.1";
5   pname = "sipp";
7   src = fetchurl {
8     url = "https://github.com/SIPp/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
9     sha256 = "sha256-alYOg6/5gvMx3byt+zvVMMWJbNW3V91utoITPMhg7LE=";
10   };
12   postPatch = ''
13     cp version.h src/version.h
14   '';
16   cmakeFlags = [
17     "-DUSE_GSL=1"
18     "-DUSE_PCAP=1"
19     "-DUSE_SSL=1"
20     "-DUSE_SCTP=${if stdenv.isLinux then "1" else "0"}"
22     # file RPATH_CHANGE could not write new RPATH
23     "-DCMAKE_SKIP_BUILD_RPATH=ON"
24   ];
25   enableParallelBuilding = true;
27   nativeBuildInputs = [ cmake git ];
28   buildInputs = [ ncurses libpcap openssl ]
29     ++ lib.optional (stdenv.isLinux) lksctp-tools;
31   meta = with lib; {
32     homepage = "http://sipp.sf.net";
33     description = "The SIPp testing tool";
34     mainProgram = "sipp";
35     license = licenses.gpl3;
36     platforms = platforms.unix;
37   };