summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/sofia-sip
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/sofia-sip')
-rw-r--r--pkgs/development/libraries/sofia-sip/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/sofia-sip/default.nix b/pkgs/development/libraries/sofia-sip/default.nix
index 593bd87a9829..c9db54fd59c4 100644
--- a/pkgs/development/libraries/sofia-sip/default.nix
+++ b/pkgs/development/libraries/sofia-sip/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, glib, openssl, pkg-config, autoreconfHook }:
+{ lib, stdenv, fetchFromGitHub, glib, openssl, pkg-config, autoreconfHook, SystemConfiguration }:
stdenv.mkDerivation rec {
pname = "sofia-sip";
@@ -11,13 +11,13 @@ stdenv.mkDerivation rec {
sha256 = "sha256-qMgZpLo/BHGJbJ0DDN8COHAhU3ujWgVK9oZOnnMwKas=";
};
- buildInputs = [ glib openssl ];
+ buildInputs = [ glib openssl ] ++ lib.optional stdenv.isDarwin SystemConfiguration;
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
homepage = "https://github.com/freeswitch/sofia-sip";
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = licenses.lgpl2;
};
}