jgart via Guix-patches via writes: > * gnu/packages/terminals.scm (tilix): New variable. > --- > gnu/packages/terminals.scm | 43 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 43 insertions(+) Hey, thanks for the patch. > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/gnunn1/tilix") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 "0sb1hypg2276y8c2a5vivrkcxp70swddvhnd9h273if3kv6j879r")))) This hash doesn't seem to match, you can sort of see this with the QA testing. Has something changed upstream since you prepared the patch? > + (build-system meson-build-system) > + (arguments > + '(#:glib-or-gtk? #t > + #:configure-flags '("-Dbuildtype=debugoptimized") > + #:phases > + (modify-phases %standard-phases > + (delete 'check)))) > + (inputs > + (list dbus > + gettext-minimal > + dconf > + gsettings-desktop-schemas > + libsecret > + libunwind)) > + (native-inputs > + (list desktop-file-utils > + gtkd Also, gtkd seems to fail to build for me, so I can't build tilix. Were you able to build it locally? Thanks, Chris