diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-10-07 12:54:40 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-10-07 12:54:40 +0200 |
commit | ad3a937dae2586aa5a66ceed32a1c2005ee486c9 (patch) | |
tree | b44dd9e8bf4e2772c566086fbb7e8fbf30533473 /tests/import-utils.scm | |
parent | 6a317919cf0f9dbc651a4a41f9ed99c49bf2d543 (diff) | |
parent | 3ae76f7f57706cf5cc4144d4ff62968e3d4c3aa4 (diff) | |
download | guix-ad3a937dae2586aa5a66ceed32a1c2005ee486c9.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'tests/import-utils.scm')
-rw-r--r-- | tests/import-utils.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/import-utils.scm b/tests/import-utils.scm index 3d8d2c698d..f4bbd335b9 100644 --- a/tests/import-utils.scm +++ b/tests/import-utils.scm @@ -43,7 +43,10 @@ (test-assert "alist->package with simple source" (let* ((meta '(("name" . "hello") ("version" . "2.10") - ("source" . "mirror://gnu/hello/hello-2.10.tar.gz") + ("source" . + ;; Use a 'file://' URI so that we don't cause a download. + ,(string-append "file://" + (search-path %load-path "guix.scm"))) ("build-system" . "gnu") ("home-page" . "https://gnu.org") ("synopsis" . "Say hi") |