On Wed, 2021-03-31 at 01:14 -0400, Maxim Cournoyer wrote: > Hello! > > I've finally picked up the packaging of Jami, which was becoming quite > outdated in Guix. I haven't had much time to test the result yet, but a > priori it seems to function as intended. > > Let me know how it works for you! It seems to work for me, however I needed to make a tiny change: diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index 67befe63a2..b73ad027fe 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -554,7 +554,7 @@ decentralized calling using P2P-DHT.") ;;; Keep this until the Qt client matures enough to become the ;;; main 'jami' client. -(deprecated-package jami jami-gnome) +#;(deprecated-package jami jami-gnome) (define-public jami-qt (package Looking at "git grep -F deprecated-package" output, perhaps (deprecated-package jami jami-gnome) should have been (deprecated-package "jami" jami-gnome) ? (untested) Also, I didn't have any opportunity to actually call someone. Greetings, Maxime.