nixpkgs/pkgs/applications/networking/pjsip/default.nix

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

46 lines
1.2 KiB
Nix
Raw Normal View History

2022-03-22 22:49:31 +00:00
{ lib, stdenv, fetchFromGitHub, openssl, libsamplerate, alsa-lib, AppKit, fetchpatch }:
stdenv.mkDerivation rec {
pname = "pjsip";
version = "2.12.1";
2020-03-23 16:16:02 +00:00
src = fetchFromGitHub {
owner = pname;
repo = "pjproject";
rev = version;
sha256 = "sha256-HIDL4xzzTu3irzrIOf8qSNCAvHGOMpi8EDeqZb8mMnc=";
};
2020-04-08 19:29:11 +00:00
patches = [
./fix-aarch64.patch
];
2019-07-06 03:01:43 +00:00
2020-04-08 19:29:11 +00:00
buildInputs = [ openssl libsamplerate ]
++ lib.optional stdenv.isLinux alsa-lib
2021-01-15 05:42:41 +00:00
++ lib.optional stdenv.isDarwin AppKit;
2017-12-27 03:10:49 +00:00
preConfigure = ''
export LD=$CC
'';
postInstall = ''
mkdir -p $out/bin
cp pjsip-apps/bin/pjsua-* $out/bin/pjsua
mkdir -p $out/share/${pname}-${version}/samples
cp pjsip-apps/bin/samples/*/* $out/share/${pname}-${version}/samples
'';
# We need the libgcc_s.so.1 loadable (for pthread_cancel to work)
dontPatchELF = true;
meta = with lib; {
broken = stdenv.isDarwin;
2016-08-29 16:22:34 +00:00
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
homepage = "https://pjsip.org/";
2020-04-08 19:29:11 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ olynch ];
mainProgram = "pjsua";
2020-04-08 19:29:11 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}