diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-08-09 11:35:51 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-08-19 22:23:59 -0400 |
commit | 0d2794005caa627965fd6256f28f94e36cd4b5a0 (patch) | |
tree | 065eb643a5a59653faa90206dc07d12996ebbb6d /tests | |
parent | 83bde59fb3db5827002a0049a5571e4163af5ff1 (diff) | |
download | patches-0d2794005caa627965fd6256f28f94e36cd4b5a0.tar patches-0d2794005caa627965fd6256f28f94e36cd4b5a0.tar.gz |
scripts: package: Add --install-from-file option.
* guix/scripts/package.scm (show-help): Add help text for --install-from-file
option.
(%options): Add --install-from-file option.
* tests/guix-package.sh: Test it.
* doc/guix.texi ("invoking guix package"): Document it.
* doc/package-hello.scm: New file.
* doc.am (EXTRA_DIST): Add it.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-package.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/guix-package.sh b/tests/guix-package.sh index b361b1ba00..bb1037044d 100644 --- a/tests/guix-package.sh +++ b/tests/guix-package.sh @@ -225,6 +225,15 @@ cat > "$module_dir/foo.scm"<<EOF EOF guix package -i emacs-foo-bar-patched -n +# Make sure installing from a file works. +cat > "$module_dir/package.scm"<<EOF +(use-modules (gnu)) +(use-package-modules bootstrap) + +%bootstrap-guile +EOF +guix package --bootstrap --install-from-file="$module_dir/package.scm" + # This one should not show up in searches since it's no supported on the # current system. test "`guix package -A super-non-portable-emacs`" = "" |