From 4ad0594c7ba70c732f1c5b63773db11d3b34c3ae Mon Sep 17 00:00:00 2001 From: Asher Mancinelli Date: Tue, 7 Jun 2022 07:21:59 -0700 Subject: fd: add new package (#31010) --- var/spack/repos/builtin/packages/fd/package.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 var/spack/repos/builtin/packages/fd/package.py diff --git a/var/spack/repos/builtin/packages/fd/package.py b/var/spack/repos/builtin/packages/fd/package.py new file mode 100644 index 0000000000..badaedbad2 --- /dev/null +++ b/var/spack/repos/builtin/packages/fd/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2022 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 Fd(Package): + """A simple, fast and user-friendly alternative to 'find'""" + + homepage = "https://github.com/sharkdp/fd" + url = "https://github.com/sharkdp/fd/archive/refs/tags/v8.4.0.tar.gz" + + version('8.4.0', sha256='d0c2fc7ddbe74e3fd88bf5bb02e0f69078ee6d2aeea3d8df42f508543c9db05d') + + maintainers = ['ashermancinelli'] + + depends_on('rust') + + def install(self, spec, prefix): + cargo = which('cargo') + cargo('install', '--root', prefix, '--path', '.') -- cgit v1.2.3-60-g2f50