Dimakakos Dimos via Guix-patches writes: > gnu/packages/emacs-xyz.scm (emacs-ox-hugo): New variable [...] > +(define-public emacs-ox-hugo > + (package > + (name "emacs-ox-hugo") > + (version "v0.8") I moved the "v" out of the version field and added it in the source URI below. > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/kaushalmodi/ox-hugo.git") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "11h464cyc28ld0b0zridgm4drydc1qjxbm1y24zrwlkyqqjk6yr7")))) > + (build-system emacs-build-system) > + (propagated-inputs `(("emacs-org" ,emacs-org))) I also removed propagation here, because users might want to use this with custom Org packages. Let me know if this was a mistake :-) Applied, thanks!