nixpkgs/pkgs/applications/misc/yate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, lib, qt4, openssl, pkg-config }:
2015-04-15 10:54:12 +02:00
stdenv.mkDerivation rec {
pname = "yate";
version = "6.4.0-1";
src = fetchurl {
url = "http://voip.null.ro/tarballs/yate${lib.versions.major version}/${pname}-${version}.tar.gz";
hash = "sha256-jCPca/+/jUeNs6hZZLUBl3HI9sms9SIPNGVRanSKA7A=";
};
# TODO zaptel ? postgres ?
nativeBuildInputs = [ pkg-config ];
2019-08-26 21:51:58 +02:00
buildInputs = [ qt4 openssl ];
# /dev/null is used when linking which is a impure path for the wrapper
postPatch =
''
2018-03-09 14:50:54 +01:00
patchShebangs configure
substituteInPlace configure --replace ",/dev/null" ""
2015-04-15 10:54:12 +02:00
'';
enableParallelBuilding = false; # fails to build if true
# --unresolved-symbols=ignore-in-shared-libs makes ld no longer find --library=yate? Why?
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@@'
'';
2015-04-15 10:54:12 +02:00
meta = {
description = "Yet another telephony engine";
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 = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.marcweber ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
2015-04-15 10:54:12 +02:00
}