nixpkgs/pkgs/applications/networking/instant-messengers/baresip/default.nix

53 lines
2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib, openssl, libre, librem, pkg-config, gst_all_1
, cairo, mpg123, alsa-lib, SDL, libv4l, celt, libsndfile, srtp, ffmpeg
, gsm, speex, portaudio, spandsp, libuuid, libvpx
2012-09-24 17:02:19 +00:00
}:
stdenv.mkDerivation rec {
2019-12-08 00:19:28 +00:00
version = "0.6.5";
pname = "baresip";
2012-09-24 17:02:19 +00:00
src=fetchurl {
url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz";
2019-12-08 00:19:28 +00:00
sha256 = "13di0ycdcr2q2a20mjvyaqfmvk5xldwqaxklqsz7470jnbc5n0rb";
2012-09-24 17:02:19 +00:00
};
nativeBuildInputs = [ pkg-config ];
2018-05-04 22:29:01 +00:00
buildInputs = [zlib openssl libre librem cairo mpg123
alsa-lib SDL libv4l celt libsndfile srtp ffmpeg gsm speex portaudio spandsp libuuid
libvpx
2018-05-04 22:29:01 +00:00
] ++ (with gst_all_1; [ gstreamer gst-libav gst-plugins-base gst-plugins-bad gst-plugins-good ]);
2012-09-24 17:02:19 +00:00
makeFlags = [
"LIBRE_MK=${libre}/share/re/re.mk"
"LIBRE_INC=${libre}/include/re"
"LIBRE_SO=${libre}/lib"
"LIBREM_PATH=${librem}"
"PREFIX=$(out)"
2012-09-24 17:02:19 +00:00
"USE_VIDEO=1"
2016-09-25 22:23:04 +00:00
"CCACHE_DISABLE=1"
2012-09-24 17:02:19 +00:00
2017-03-31 20:33:44 +00:00
"USE_ALSA=1" "USE_AMR=1" "USE_CAIRO=1" "USE_CELT=1"
2018-05-04 22:29:01 +00:00
"USE_CONS=1" "USE_EVDEV=1" "USE_FFMPEG=1" "USE_GSM=1" "USE_GST1=1"
2017-03-31 20:33:44 +00:00
"USE_L16=1" "USE_MPG123=1" "USE_OSS=1" "USE_PLC=1" "USE_VPX=1"
"USE_PORTAUDIO=1" "USE_SDL=1" "USE_SNDFILE=1" "USE_SPEEX=1"
"USE_SPEEX_AEC=1" "USE_SPEEX_PP=1" "USE_SPEEX_RESAMP=1" "USE_SRTP=1"
2012-09-24 17:02:19 +00:00
"USE_STDIO=1" "USE_SYSLOG=1" "USE_UUID=1" "USE_V4L2=1" "USE_X11=1"
2016-09-25 22:23:04 +00:00
"USE_BV32=" "USE_COREAUDIO=" "USE_G711=1" "USE_G722=1" "USE_G722_1="
2017-03-31 20:33:44 +00:00
"USE_ILBC=" "USE_OPUS=" "USE_SILK="
]
2021-01-15 05:42:41 +00:00
++ lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
++ lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.cc.libc}"
;
2017-03-31 20:33:44 +00:00
NIX_CFLAGS_COMPILE='' -I${librem}/include/rem -I${gsm}/include/gsm
2017-03-31 20:33:44 +00:00
-DHAVE_INTTYPES_H -D__GLIBC__
-D__need_timeval -D__need_timespec -D__need_time_t '';
2012-09-24 17:02:19 +00:00
meta = {
homepage = "http://www.creytiv.com/baresip.html";
2021-01-15 05:42:41 +00:00
platforms = with lib.platforms; linux;
maintainers = with lib.maintainers; [raskin];
license = lib.licenses.bsd3;
2014-07-01 07:51:46 +00:00
downloadPage = "http://www.creytiv.com/pub/";
updateWalker = true;
downloadURLRegexp = "/baresip-.*[.]tar[.].*";
2012-09-24 17:02:19 +00:00
};
}