Some icons never change under xfce

2020-11-17 Thread Barnabás Béres
Hi Guixers, I installed papirus-icon-theme as a system package and tried to change the default xfce icons but unfortunately some icons didn’t change (for example folder icons). Do you have any idea what causes this behavior? Thanks for your help in advance! Best Regards Barnabas Beres

Re: trivial-build-system and which

2020-11-17 Thread Oleg Pykhalov
Hello, Stephen Scheck writes: > This package definition always fails with #f returned by `(which "bash")` > ... am I missing something? > > (build-system trivial-build-system) > (arguments > `(#:builder > (begin >(use-modules (guix build utils)) >

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-17 Thread Kyle Meyer
zimoun writes: > On Mon, 16 Nov 2020 at 21:36, Kyle Meyer wrote: > >>> 4. !! send-email --to=guix-patc...@gnu.org -cover-letter.patch >>> 5. Wait and refresh my inbox >>> 6. !! send-email --to=12...@gnu.org 000?-*.patch >> >> Yeah, 4-6 are tricky and debbugs-specific. For other projects,

trivial-build-system and which

2020-11-17 Thread Stephen Scheck
This package definition always fails with #f returned by `(which "bash")` ... am I missing something? (build-system trivial-build-system) (arguments `(#:builder (begin (use-modules (guix build utils)) (invoke "make" (string-append "SHELL=" (which

Emacs, ccls, LSP and C++

2020-11-17 Thread Alexandru-Sergiu Marton
Hi, I have some problems setting up a C++ development environment on Guix System. I'm using Emacs with lsp-mode and emacs-ccls. This setup works very well for C projects, but ccls doesn't seem to like anything related to C++. Take this simple program for example: --8<---cut

Re: Package building with gcc-10

2020-11-17 Thread zimoun
Dear, On Mon, 16 Nov 2020 at 16:18, "Hamzeh Nasajpour" wrote: > I have a cpp Application that should be build with > `gcc-toolchain-10.2.0`. I could build it in local. But seems that in > package building the `cmake-build-system` is using the > `gcc-7.5.0`. How can I set a specific version of

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-17 Thread Kyle Meyer
Kyle Meyer writes: >> C-m l > > If you follow the convention of writing a cover letter only for > multi-patch series, you can drop the 'C-m l' because by default git will > generate a cover letter when there is more than one commit. Sorry, I was mistaken: generating a cover letter for a

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-17 Thread zimoun
Hi Kyle, Thank you for the detailed explanations and hints. On Mon, 16 Nov 2020 at 21:36, Kyle Meyer wrote: >> 4. !! send-email --to=guix-patc...@gnu.org -cover-letter.patch >> 5. Wait and refresh my inbox >> 6. !! send-email --to=12...@gnu.org 000?-*.patch > > Yeah, 4-6 are tricky and

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-17 Thread zimoun
Hi Pierre, On Tue, 17 Nov 2020 at 08:28, Pierre Neidhardt wrote: > Notmuch user here, today I learned about > notmuch-show-stash-git-send-email! Some weeks (months?) ago, I also “discovered“ the Notmuch stash stuff. For example, if I want to refer to your previous message via classic way, I

Re: Package workspace relocation

2020-11-17 Thread zimoun
Hi Efraim, On Tue, 17 Nov 2020 at 09:23, Efraim Flashner wrote: > (add-after 'unpack 'move-source > (lambda _ > (mkdir-p "foo/bar") > (rename-file "my-project" "foo/bar/my-project") > #t)) Cool! Thank you for the explanation. Cheers, simon