2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl, zlib, openssl}:
|
2012-09-24 18:02:19 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-06 22:11:11 +00:00
|
|
|
version = "0.6.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libre";
|
2017-12-11 14:57:37 +00:00
|
|
|
src = fetchurl {
|
2012-09-24 18:02:19 +01:00
|
|
|
url = "http://www.creytiv.com/pub/re-${version}.tar.gz";
|
2020-01-06 22:11:11 +00:00
|
|
|
sha256 = "0hzyc0hdlw795nyx6ik7h2ihs8wapbj32x8c40xq0484ciwzqnyd";
|
2012-09-24 18:02:19 +01:00
|
|
|
};
|
2017-12-11 14:57:37 +00:00
|
|
|
buildInputs = [ zlib openssl ];
|
|
|
|
makeFlags = [ "USE_ZLIB=1" "USE_OPENSSL=1" "PREFIX=$(out)" ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
|
2021-01-23 17:15:07 +00:00
|
|
|
++ lib.optional (stdenv.cc.libc != null) "SYSROOT=${lib.getDev stdenv.cc.libc}"
|
2012-09-24 20:49:11 +01:00
|
|
|
;
|
2012-09-24 18:02:19 +01:00
|
|
|
meta = {
|
2019-11-17 08:43:55 +00:00
|
|
|
description = "A library for real-time communications with async IO support and a complete SIP stack";
|
|
|
|
homepage = "http://www.creytiv.com/re.html";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
maintainers = with lib.maintainers; [raskin];
|
|
|
|
license = lib.licenses.bsd3;
|
2014-07-01 08:51:28 +01:00
|
|
|
inherit version;
|
|
|
|
downloadPage = "http://www.creytiv.com/pub/";
|
|
|
|
updateWalker = true;
|
|
|
|
downloadURLRegexp = "/re-.*[.]tar[.].*";
|
2012-09-24 18:02:19 +01:00
|
|
|
};
|
|
|
|
}
|