Ricardo Wurmus writes: > Christopher Baines writes: > >> * gnu/packages/ruby.scm (ruby-terraform): New variable. > […] >> +(define-public ruby-terraform >> + (package >> + (name "ruby-terraform") >> + (version "0.20.0") >> + (source >> + (origin >> + (method url-fetch) >> + (uri (rubygems-uri "ruby-terraform" version)) >> + (sha256 >> + (base32 >> + "1czpak24v570ysnk8waj1sblfm1vqh1sdwh934x4ai90ribhlbzf")))) > > The indentation isn’t right here. Good spot, I've fixed this now. >> + (build-system ruby-build-system) >> + (arguments >> + '(;; No included tests >> + #:tests? #f)) > > Could you please put this all on one line? Ok. I've taken to putting the comment inline, as this is syntactically next to the #:tests? argument and this makes it easier to add additional arguments, as you don't have to shuffle the comment around. I'm happy to just put it inline though.