gnu: gimp: Report bugs to Guix.

Upstream prints this when running ./configure. Take the hint.

  NOTE: if you plan on packaging GIMP for distribution, it is
        recommended to override the bug report URL with option:
          --with-bug-report-url=https://example.com/
        so that you can filter packaging bugs from core bugs before
        reporting upstream.

* gnu/packages/gimp.scm (gimp)[arguments]: Customise bug report URI.
master
Tobias Geerinckx-Rice 2018-08-20 13:36:04 +02:00
parent 0f83d6029e
commit cb4baa4da6
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 3 deletions

View File

@ -130,9 +130,12 @@ buffers.")
(outputs '("out"
"doc")) ; 9 MiB of gtk-doc HTML
(arguments
'(#:configure-flags (list (string-append "--with-html-dir="
(assoc-ref %outputs "doc")
"/share/gtk-doc/html"))
'(#:configure-flags
(list (string-append "--with-html-dir="
(assoc-ref %outputs "doc")
"/share/gtk-doc/html")
;; ./configure requests not to annoy upstream with packaging bugs.
"--with-bug-report-url=https://bugs.gnu.org/guix")
#:phases
(modify-phases %standard-phases
(add-after 'install 'install-sitecustomize.py