We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d7cc71 + 4ec084e commit 4511241Copy full SHA for 4511241
pkgs/development/libraries/sofia-sip/default.nix
@@ -2,6 +2,7 @@
2
lib,
3
stdenv,
4
fetchFromGitHub,
5
+ fetchpatch2,
6
glib,
7
openssl,
8
pkg-config,
@@ -20,6 +21,15 @@ stdenv.mkDerivation rec {
20
21
sha256 = "sha256-7QmK2UxEO5lC0KBDWB3bwKTy0Nc7WrdTLjoQYzezoaY=";
22
};
23
24
+ patches = [
25
+ # Fix build with gcc 14 from https://github.com/freeswitch/sofia-sip/pull/249
26
+ (fetchpatch2 {
27
+ name = "sofia-sip-fix-incompatible-pointer-type.patch";
28
+ url = "https://github.com/freeswitch/sofia-sip/commit/46b02f0655af0a9594e805f09a8ee99278f84777.diff";
29
+ hash = "sha256-4uZVtKnXG+BPW8byjd7tu4uEZo9SYq9EzTEvMwG0Bak=";
30
+ })
31
+ ];
32
+
33
buildInputs = [
34
glib
35
openssl
0 commit comments