summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2020-03-05 13:14:40 -0500
committerGitHub <noreply@github.com>2020-03-05 10:14:40 -0800
commit24e6155bac7afe655cbd43b9575f316c844d38d5 (patch)
tree8235339aff228ab68874abd3257ed70431e6d40a
parent3a8800b6b46ce23bbb688c63918b3d814a9e44a8 (diff)
downloadspack-24e6155bac7afe655cbd43b9575f316c844d38d5.tar.gz
spack-24e6155bac7afe655cbd43b9575f316c844d38d5.tar.bz2
spack-24e6155bac7afe655cbd43b9575f316c844d38d5.tar.xz
spack-24e6155bac7afe655cbd43b9575f316c844d38d5.zip
New package: fd-find (#15344)
* New package: fd-find Add package for fd-find: A simple, fast and user-friendly alternative to 'find'. * Update copyright date
-rw-r--r--var/spack/repos/builtin/packages/fd-find/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fd-find/package.py b/var/spack/repos/builtin/packages/fd-find/package.py
new file mode 100644
index 0000000000..faf7374cb6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fd-find/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2020 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 import *
+
+
+class FdFind(Package):
+ """A simple, fast and user-friendly alternative to 'find'."""
+
+ homepage = "https://github.com/sharkdp/fd"
+ url = "https://github.com/sharkdp/fd/archive/v7.3.0.tar.gz"
+
+ version('7.4.0', sha256='33570ba65e7f8b438746cb92bb9bc4a6030b482a0d50db37c830c4e315877537')
+
+ depends_on('rust')
+
+ def install(self, spec, prefix):
+ cargo = which('cargo')
+ cargo('install', '--root', prefix, '--path', '.')