440483b8e1
Release notes: https://www.nushell.sh/blog/ Updated license hash due to copyright year bump: https://github.com/nushell/nushell/commit/192ee59c754ec5c9b66e28cca94a75d643501be7 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))
|