2012-09-24 19:02:19 +02:00
|
|
|
{stdenv, fetchurl, zlib, openssl}:
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-15 12:28:50 +01:00
|
|
|
version = "0.6.0";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libre";
|
2017-12-11 15:57:37 +01:00
|
|
|
src = fetchurl {
|
2012-09-24 19:02:19 +02:00
|
|
|
url = "http://www.creytiv.com/pub/re-${version}.tar.gz";
|
2018-12-15 12:28:50 +01:00
|
|
|
sha256 = "0cc1x6pm1nz09046bfzgvp2p3wjbgm6f53d71a9dd14grjsvr5qf";
|
2012-09-24 19:02:19 +02:00
|
|
|
};
|
2017-12-11 15:57:37 +01:00
|
|
|
buildInputs = [ zlib openssl ];
|
|
|
|
makeFlags = [ "USE_ZLIB=1" "USE_OPENSSL=1" "PREFIX=$(out)" ]
|
2015-01-15 05:25:26 +01:00
|
|
|
++ stdenv.lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
|
2016-08-30 15:30:24 +02:00
|
|
|
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.lib.getDev stdenv.cc.libc}"
|
2012-09-24 21:49:11 +02:00
|
|
|
;
|
2012-09-24 19:02:19 +02:00
|
|
|
meta = {
|
2019-11-17 09:43:55 +01: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 19:02:19 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2015-05-28 19:20:29 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2014-07-01 09:51:28 +02:00
|
|
|
inherit version;
|
|
|
|
downloadPage = "http://www.creytiv.com/pub/";
|
|
|
|
updateWalker = true;
|
|
|
|
downloadURLRegexp = "/re-.*[.]tar[.].*";
|
2012-09-24 19:02:19 +02:00
|
|
|
};
|
|
|
|
}
|