diff --git a/README.md b/README.md
index c0f15a50c0..5e40f2d845 100644
--- a/README.md
+++ b/README.md
@@ -58,8 +58,7 @@ luci-theme-darkmatter source: [apollo-ng/luci-theme-darkmatter](https://github.c
luci-app-koolproxyR source: [Ameykyl/luci-app-koolproxyR](https://github.com/Ameykyl/luci-app-koolproxyR).
openwrt-chinadns-ng source: [pexcn/openwrt-chinadns-ng](https://github.com/pexcn/openwrt-chinadns-ng).
luci-app-ssr-plus-jo source: [brokeld/luci-app-ssr-plus-jo](https://github.com/brokeld/luci-app-ssr-plus-jo).
-openwrt-udpspeeder source: [pexcn/openwrt-udpspeeder](https://github.com/pexcn/openwrt-udpspeeder).
-openwrt-GoQuiet source: [m4niacjp/openwrt-GoQuiet](https://github.com/m4niacjp/openwrt-GoQuiet).
+openwrt-udpspeeder source: [pexcn/openwrt-udpspeeder](https://github.com/pexcn/openwrt-udpspeeder).
# License
### [GPL v3](https://www.gnu.org/licenses/gpl-3.0.html).
diff --git a/package/ctcgfw/openwrt-GoQuiet/Makefile b/package/ctcgfw/openwrt-GoQuiet/Makefile
deleted file mode 100644
index f2f14c485a..0000000000
--- a/package/ctcgfw/openwrt-GoQuiet/Makefile
+++ /dev/null
@@ -1,62 +0,0 @@
-#
-# Copyright (C) 2018 Andrea Muratori
-#
-# This is free software, licensed under the GNU General Public License v3.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=GoQuiet
-PKG_VERSION:=1.0.0
-PKG_RELEASE:=1
-
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=https://github.com/cbeuw/GoQuiet.git
-PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
-PKG_SOURCE_VERSION:=2f4a456b85d9ede8399546518018c11966511b5a
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
-
-PKG_LICENSE:=GPLv3
-PKG_LICENSE_FILES:=LICENSE
-PKG_MAINTAINER:=Andrea Muratori
-
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(PKG_SOURCE_SUBDIR)
-
-PKG_INSTALL:=1
-PKG_FIXUP:=autoreconf
-PKG_USE_MIPS16:=0
-PKG_BUILD_PARALLEL:=1
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/GoQuiet/Default
- SECTION:=net
- CATEGORY:=Network
- TITLE:=GoQuiet
- URL:=https://github.com/cbeuw/GoQuiet/
-endef
-
-Package/gq-client = $(call Package/GoQuiet/Default)
-Package/gq-server = $(call Package/GoQuiet/Default)
-
-define Package/gq-client/description
-A shadowsocks plugin that obfuscates the traffic as normal HTTPS traffic and disguises the proxy server as a normal webserver.
-endef
-
-Package/gq-server/description = $(Package/simple-obfs/description)
-
-CONFIGURE_ARGS += --disable-ssp --disable-documentation --disable-assert
-
-define Package/gq-client/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/GoQuiet-client $(1)/usr/bin/gq-client
-endef
-
-define Package/gq-server/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/GoQuiet-server $(1)/usr/bin/gq-server
-endef
-
-$(eval $(call BuildPackage,gq-client))
-$(eval $(call BuildPackage,gq-server))