diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-10-10 11:52:03 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-10-10 11:52:03 +0300 |
commit | 523b77faef0caa60d13ba2a83a9a0ca65ef8833c (patch) | |
tree | 2c4e5ef671ac773b27fcc5015221af53819f929a | |
parent | 36646075eff95bdef539c8c79ce63a5a50aa9b2d (diff) | |
download | guix-523b77faef0caa60d13ba2a83a9a0ca65ef8833c.tar guix-523b77faef0caa60d13ba2a83a9a0ca65ef8833c.tar.gz |
import: github: Add .love extension.
* guix/import/github.scm (find-extension): Add '.love' extension to the
list of extensions checked.
-rw-r--r-- | guix/import/github.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/github.scm b/guix/import/github.scm index 9ba9a10ba0..0843ddeefd 100644 --- a/guix/import/github.scm +++ b/guix/import/github.scm @@ -44,7 +44,7 @@ failure." "Return the extension of the archive e.g. '.tar.gz' given a URL, or false if none is recognized" (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) ;; Return a url for the OLD-PACKAGE with NEW-VERSION. If no source url in |