diff options
Diffstat (limited to 'distro/packages/bash.scm')
-rw-r--r-- | distro/packages/bash.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distro/packages/bash.scm b/distro/packages/bash.scm index 7b427debd9..944bd077a3 100644 --- a/distro/packages/bash.scm +++ b/distro/packages/bash.scm @@ -17,6 +17,7 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages bash) + #:use-module (guix licenses) #:use-module (distro packages ncurses) #:use-module (distro packages readline) #:use-module (guix packages) @@ -84,5 +85,5 @@ to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard. It offers functional improvements over sh for both programming and interactive use. In addition, most sh scripts can be run by Bash without modification.") - (license "GPLv3+") + (license gpl3+) (home-page "http://www.gnu.org/software/bash/")))) |