Re: [Telegram-Desktop]: Help with packaging

2021-01-11 Thread Raghav Gururajan
Hello Guix! Currently, while building tdesktop, I get this error (https://paste.debian.net/plain/1180757). New diff file is attached with this email, which is to be applied on top off master (efa773f94a18b40f2c63795f364ae87dade76f60). Any ideas on how to rectify this error? Regards, RG.

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Raghav Gururajan
Hello Guix! While building 'tdesktop', I get this error: https://paste.debian.net/1180280/ Any ideas? Regards, RG.

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Raghav Gururajan
Hi Mark and Ricardo! It's more appropriate to use 'for-each' here. 'map' collects all of the results into a list and returns that list, which is not needed here, and is slightly less readable. Also, the second argument to 'find-files' is optional; omitting it does what's needed more

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Ricardo Wurmus
Hi Mark, > It's more appropriate to use 'for-each' here. 'map' collects all of the > results into a list and returns that list, which is not needed here, and > is slightly less readable. Also, the second argument to 'find-files' is > optional; omitting it does what's needed more efficiently.

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Mark H Weaver
Hi, Ricardo Wurmus writes: > Because you are fetching from git and the git checkout is not writable > You need a build phase like this: > > --8<---cut here---start->8--- > (add-after 'unpack 'make-writable >(lambda _ > (map

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Julien Lepiller
Le 8 janvier 2021 07:11:38 GMT-05:00, Ekaitz Zarraga a écrit : >Hi, > >I'm not sure about what I'm going to say so take it with care: > >About the permission error I think the build directories are write >protected by default it Guix, please someone correct me if I'm wrong. >I'd say you can

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Ricardo Wurmus
Raghav Gururajan writes: > Hello Guix! > >> With this email, I have attached the complete diff, which is to be >> applied on top of master. > > I have attached wrong file before. Here is the correct one attached. The error you posted is this: --8<---cut

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Ekaitz Zarraga
Hi, I'm not sure about what I'm going to say so take it with care: About the permission error I think the build directories are write protected by default it Guix, please someone correct me if I'm wrong. I'd say you can change the permissions of the folder with the chmod util, you can see many

Re: [Telegram-Desktop]: Help with packaging

2021-01-07 Thread Raghav Gururajan
Hello Guix! With this email, I have attached the complete diff, which is to be applied on top of master. I have attached wrong file before. Here is the correct one attached. Regards, RG. diff --git a/gnu/local.mk b/gnu/local.mk index dfd44ac769..4332f16a82 100644 --- a/gnu/local.mk +++