summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorPranav Sivaraman <14294205+pranav-sivaraman@users.noreply.github.com>2024-02-24 16:53:08 -0500
committerGitHub <noreply@github.com>2024-02-24 14:53:08 -0700
commit5d8cd207ec2cbf4d936006c69e61468783ea58ca (patch)
tree86fdc519b8256edc1da8a8bb555afb57d0d1f113 /var
parent3990589b08ce71ed37417c890af80e62c9481a77 (diff)
downloadspack-5d8cd207ec2cbf4d936006c69e61468783ea58ca.tar.gz
spack-5d8cd207ec2cbf4d936006c69e61468783ea58ca.tar.bz2
spack-5d8cd207ec2cbf4d936006c69e61468783ea58ca.tar.xz
spack-5d8cd207ec2cbf4d936006c69e61468783ea58ca.zip
zoxide: new package (#42840)
* feat: zoxide package * Apply suggestions from code review Co-authored-by: Alec Scott <alec@bcs.sh> --------- Co-authored-by: Alec Scott <alec@bcs.sh>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/zoxide/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/zoxide/package.py b/var/spack/repos/builtin/packages/zoxide/package.py
new file mode 100644
index 0000000000..d352495c5a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/zoxide/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class Zoxide(CargoPackage):
+ """zoxide is a smarter cd command, inspired by z and autojump. It
+ remembers which directories you use most frequently, so you can
+ "jump" to them in just a few keystrokes. zoxide works on all major shells.
+ """
+
+ homepage = "https://github.com/ajeetdsouza/zoxide"
+ url = "https://github.com/ajeetdsouza/zoxide/archive/refs/tags/v0.9.4.tar.gz"
+
+ maintainers("pranav-sivaraman")
+
+ license("MIT")
+
+ version("0.9.4", sha256="ec002bdca37917130ae34e733eb29d4baa03b130c4b11456d630a01a938e0187")