me
/
guix
Archived
1
0
Fork 0

gnu: quiterss: Fix lint warnings.

* gnu/packages/syndication.scm (quiterss):
[source]: Use git-fetch instead of autogenerated GitHub tarball. Remove
trailing whitespace.
master
Léo Le Bouter 2021-03-01 04:42:12 +01:00
parent 8e5061e6d6
commit 143472afa4
No known key found for this signature in database
GPG Key ID: 45A8B1E86BCD10A6
1 changed files with 7 additions and 6 deletions

View File

@ -366,13 +366,14 @@ formats, including all versions of RSS and Atom.")
(name "quiterss") (name "quiterss")
(version "0.19.4") (version "0.19.4")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/QuiteRSS/quiterss/archive/" (url "https://github.com/QuiteRSS/quiterss")
version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1g1kfa15fr8xskpsc15fbw22z8fljkyq6wfq02zygi4fb8hgmpyr")) "1cgvl67vhn5y7bj5gbjbgk26bhb0196bgrgsp3r5fmrislarj8s6"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
'(begin '(begin
@ -383,7 +384,7 @@ formats, including all versions of RSS and Atom.")
"settings.value(\"Settings/statisticsEnabled2\", false)") "settings.value(\"Settings/statisticsEnabled2\", false)")
;; Disable update check spyware by default, otherwise runs ;; Disable update check spyware by default, otherwise runs
;; at every startup, nasty. Not needed on GNU Guix as a ;; at every startup, nasty. Not needed on GNU Guix as a
;; feature either way. ;; feature either way.
(("settings\\.value\\(\"Settings/updateCheckEnabled\", true\\)") (("settings\\.value\\(\"Settings/updateCheckEnabled\", true\\)")
"settings.value(\"Settings/updateCheckEnabled\", false)")) "settings.value(\"Settings/updateCheckEnabled\", false)"))
#t)))) #t))))