On Wed, 2021-04-14 at 05:20 -0500, Martin Becze wrote: > [...] > +(define-public wally-cli > + (package > + (name "wally-cli") > + (version "2.0.0") > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/zsa/wally-cli.git") > + (commit (string-append version "-linux")))) > + (sha256 > + (base32 > + "0xz3z18bbnf736ngjj6jhnp3p2j55m5jhnb2xl6l5hybracfyhm7")) > + (file-name (git-file-name name version)))) > + (build-system go-build-system) > + (arguments > + '(#:tests? #f ; tests fail on the linter Does upstream know about the failing tests? Also, consider disabling *only* the known failing tests. Greetings, Maxime.