Skip to content
Snippets Groups Projects
Unverified Commit 523b77fa authored by Efraim Flashner's avatar Efraim Flashner
Browse files

import: github: Add .love extension.

* guix/import/github.scm (find-extension): Add '.love' extension to the
list of extensions checked.
parent 36646075
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ (define (find-extension url) ...@@ -44,7 +44,7 @@ (define (find-extension url)
"Return the extension of the archive e.g. '.tar.gz' given a URL, or "Return the extension of the archive e.g. '.tar.gz' given a URL, or
false if none is recognized" false if none is recognized"
(find (lambda (x) (string-suffix? x url)) (find (lambda (x) (string-suffix? x url))
(list ".tar.gz" ".tar.bz2" ".tar.xz" ".zip" ".tar" ".tgz"))) (list ".tar.gz" ".tar.bz2" ".tar.xz" ".zip" ".tar" ".tgz" ".love")))
(define (updated-github-url old-package new-version) (define (updated-github-url old-package new-version)
;; Return a url for the OLD-PACKAGE with NEW-VERSION. If no source url in ;; Return a url for the OLD-PACKAGE with NEW-VERSION. If no source url in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment