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