Thomas Danckaert writes: > Stefan Reichör writes: > >> + (source (origin >> + (method url-fetch) >> + (uri (string-append >> + "https://github.com/jimeh/tmuxifier/archive/v" >> + version ".tar.gz")) >> + (sha256 >> + (base32 >> + "1j9fj6zg0j3sdn7svpybzsqh7876rv81zi437976kj7hxnyjkcz7")))) > > guix lint asks to add > > (file-name (string-append name "-" version ".tar.gz")) > > to the source, so the downloaded tarball in the store is easily > recognizable. Other than that, it looks good to me, so I can push with > that change, assuming it works (not a tmux user myself :) ). > > cheers, > > Thomas Thanks for your review. I have added the file-name hint. guix lint asked me to change '...' to @code{...}. So I changed this as well. Stefan.