lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

linphone: 3.8.1 -> 3.8.5

+2 -37
+2 -2
pkgs/applications/networking/instant-messengers/linphone/default.nix
··· 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 - name = "linphone-3.8.1"; 7 + name = "linphone-3.8.5"; 8 8 9 9 src = fetchurl { 10 10 url = "mirror://savannah/linphone/3.8.x/sources/${name}.tar.gz"; 11 - sha256 = "19xwar8z5hyp1bap1s437ipv90gspmjwcq5zznds55d7r6gbqicd"; 11 + sha256 = "10brlbwkk61nhd5v2sim1vfv11xm138l1cqqh3imhs2sigmzzlax"; 12 12 }; 13 13 14 14 buildInputs = [
-35
pkgs/applications/networking/instant-messengers/linphone/fix-deprecated.patch
··· 1 - diff --git a/gtk/main.c b/gtk/main.c 2 - index 7079bc8..f076127 100644 3 - --- a/gtk/main.c 4 - +++ b/gtk/main.c 5 - @@ -1643,7 +1643,7 @@ int main(int argc, char *argv[]){ 6 - GdkPixbuf *pbuf; 7 - const char *app_name="Linphone"; 8 - 9 - - g_thread_init(NULL); 10 - + g_type_init(); 11 - gdk_threads_init(); 12 - 13 - progpath = strdup(argv[0]); 14 - diff --git a/gtk/setupwizard.c b/gtk/setupwizard.c 15 - index 1c54fca..45c9091 100644 16 - --- a/gtk/setupwizard.c 17 - +++ b/gtk/setupwizard.c 18 - @@ -270,7 +270,7 @@ static void account_username_changed(GtkEntry *entry, GtkWidget *w) { 19 - linphone_account_creator_set_username(creator, gtk_entry_get_text(username)); 20 - 21 - if (g_regex_match_simple("^[a-zA-Z]+[a-zA-Z0-9.\\-_]{3,}$", gtk_entry_get_text(username), 0, 0)) { 22 - - g_thread_create(check_username_availability, (void*)w, FALSE, NULL); 23 - + g_thread_new (NULL, check_username_availability, (void*)w); 24 - } 25 - else { 26 - if (gtk_entry_get_text_length(username) < LOGIN_MIN_SIZE) { 27 - @@ -534,7 +534,7 @@ GtkWidget * linphone_gtk_create_assistant(void){ 28 - ok = create_pixbuf(linphone_gtk_get_ui_config("ok","ok.png")); 29 - notok = create_pixbuf(linphone_gtk_get_ui_config("notok","notok.png")); 30 - 31 - - g_thread_init (NULL); 32 - + g_type_init (); 33 - gdk_threads_init (); 34 - 35 - GtkWidget *p1=create_intro();