diff --git a/README.md b/README.md
index 875fb77de..58fc9604e 100644
--- a/README.md
+++ b/README.md
@@ -324,6 +324,7 @@ cog.out(pretty_list)
| [](https://typora.io/) | `typora` | A minimal Markdown editor and reader. |
| [](https://github.com/ubuntu/ubuntu-make/) | `ubuntu-make` | Easy setup of common tools for developers on Ubuntu. |
| [](https://ulauncher.io/) | `ulauncher` | Application launcher for Linux. |
+| [](https://www.vagrantup.com/) | `vagrant` | Building and maintaining virtual software development environments. |
| [](https://www.virtualbox.org/) | `virtualbox-6.1` | VirtualBox 6.1 is a general-purpose full virtualizer for x86 hardware, targeted at server, desktop and embedded use. |
| [](https://vivaldi.com/) | `vivaldi-stable` | The most feature-packaged, customisable browser. |
| [](https://www.hamrick.com/) | `vuescan` | Scanner Software that supports over 6500 scanners. |
diff --git a/deb-get b/deb-get
index 4442d253b..fdc8eb67d 100755
--- a/deb-get
+++ b/deb-get
@@ -2617,6 +2617,17 @@ function deb_google-cloud-cli() {
SUMMARY="The Google Cloud CLI is a set of tools to create and manage Google Cloud resources. You can use these tools to perform many common platform tasks from the command line or through scripts and other automation."
}
+function deb_vagrant() {
+ ARCHS_SUPPORTED="amd64"
+ CODENAMES_SUPPORTED="buster bullseye focal jammy"
+ APT_KEY_URL="https://apt.releases.hashicorp.com/gpg"
+ APT_LIST_NAME="hashicorp"
+ APT_REPO_URL="deb https://apt.releases.hashicorp.com ${UPSTREAM_CODENAME} main"
+ PRETTY_NAME="Vagrant"
+ WEBSITE="https://www.vagrantup.com/"
+ SUMMARY="Building and maintaining virtual software development environments."
+}
+
# Create an array to track those deb_ functions being loaded by this script
readonly DEB_GET_APPS=($(declare -F | grep deb_ | sed 's|declare -f deb_||g' | sort))