Damien Cassou writes: > Same patch but with indentation fixed, sorry. Thanks! Can you submit the indentation change as a separate commit? [...] > * gnu/packages/xdisorg.scm (clipmenu): Update to 6.0.1. [...] > + (package > + (name "clipmenu") > + (version "6.0.1") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://github.com/cdown/clipmenu/archive/" version ".tar.gz")) The GitHub /archive/ URL's are not stable: the tarballs they generate may get regenerated in the future with different timestamps and break the checksum. So please continue using git-fetch here. Can you send an updated patch? TIA!