nixpkgs/pkgs/development/libraries/libre/default.nix

26 lines
955 B
Nix
Raw Normal View History

{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";
pname = "libre";
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
};
buildInputs = [ zlib openssl ];
makeFlags = [ "USE_ZLIB=1" "USE_OPENSSL=1" "PREFIX=$(out)" ]
++ 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 18:02:19 +01:00
meta = {
description = "A library for real-time communications with async IO support and a complete SIP stack";
homepage = "http://www.creytiv.com/re.html";
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
};
}