2021-01-17 03:09:27 +01:00
|
|
|
{ stdenv, fetchurl, lib, qt4, openssl, pkg-config }:
|
2009-10-18 06:43:48 +02:00
|
|
|
|
2015-04-15 10:54:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "yate";
|
2019-08-26 21:51:58 +02:00
|
|
|
version = "6.1.0-1";
|
2009-10-18 06:43:48 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "http://voip.null.ro/tarballs/yate${lib.versions.major version}/${pname}-${version}.tar.gz";
|
2019-08-26 21:51:58 +02:00
|
|
|
sha256 = "0xx3i997nsf2wzbv6m5n6adsym0qhgc6xg4rsv0fwqrgisf5327d";
|
2009-10-18 06:43:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# TODO zaptel ? postgres ?
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-08-26 21:51:58 +02:00
|
|
|
buildInputs = [ qt4 openssl ];
|
2009-10-18 06:43:48 +02:00
|
|
|
|
|
|
|
# /dev/null is used when linking which is a impure path for the wrapper
|
2010-07-28 20:01:17 +02:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
sed -i 's@,/dev/null@@' configure
|
2018-03-09 14:50:54 +01:00
|
|
|
patchShebangs configure
|
2015-04-15 10:54:12 +02:00
|
|
|
'';
|
2009-10-18 06:43:48 +02:00
|
|
|
|
|
|
|
# --unresolved-symbols=ignore-in-shared-libs makes ld no longer find --library=yate? Why?
|
2010-07-28 20:01:17 +02:00
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
export NIX_LDFLAGS="-L$TMP/yate $NIX_LDFLAGS"
|
|
|
|
find . -type f -iname Makefile | xargs sed -i \
|
|
|
|
-e 's@-Wl,--unresolved-symbols=ignore-in-shared-libs@@' \
|
|
|
|
-e 's@-Wl,--retain-symbols-file@@'
|
|
|
|
'';
|
2009-10-18 06:43:48 +02:00
|
|
|
|
2015-04-15 10:54:12 +02:00
|
|
|
meta = {
|
|
|
|
description = "Yet another telephony engine";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://yate.null.ro/";
|
2015-04-15 10:54:12 +02:00
|
|
|
# Yate's license is GPL with an exception for linking with
|
|
|
|
# OpenH323 and PWlib (licensed under MPL).
|
|
|
|
license = ["GPL" "MPL"];
|
2010-07-28 20:01:17 +02:00
|
|
|
maintainers = [ lib.maintainers.marcweber ];
|
2018-03-09 15:54:07 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2009-10-18 06:43:48 +02:00
|
|
|
};
|
|
|
|
|
2015-04-15 10:54:12 +02:00
|
|
|
}
|