mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Release notes: https://www.nushell.sh/blog/
Updated license hash due to copyright year bump:
192ee59c75
Fixes:
https://autobuild.buildroot.net/results/d27/d27004dd62cd0c87fbfbe0eca8057b17d84c799d/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
664 B
Makefile
21 lines
664 B
Makefile
################################################################################
|
|
#
|
|
# nushell
|
|
#
|
|
################################################################################
|
|
|
|
NUSHELL_VERSION = 0.108.0
|
|
NUSHELL_SITE = $(call github,nushell,nushell,$(NUSHELL_VERSION))
|
|
NUSHELL_LICENSE = MIT
|
|
NUSHELL_LICENSE_FILES = LICENSE
|
|
NUSHELL_DEPENDENCIES = host-pkgconf openssl ncurses
|
|
|
|
# Add /usr/bin/nu to /etc/shells as in package/bash/bash.mk
|
|
define NUSHELL_ADD_NU_TO_SHELLS
|
|
grep -qsE '^/usr/bin/nu$$' $(TARGET_DIR)/etc/shells \
|
|
|| echo "/usr/bin/nu" >> $(TARGET_DIR)/etc/shells
|
|
endef
|
|
NUSHELL_TARGET_FINALIZE_HOOKS += NUSHELL_ADD_NU_TO_SHELLS
|
|
|
|
$(eval $(cargo-package))
|