diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-ids/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-ids/package.py b/var/spack/repos/builtin/packages/r-ids/package.py new file mode 100644 index 0000000000..48d9833643 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-ids/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2021 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 RIds(RPackage): + """Generate Random Identifiers. + + Generate random or human readable and pronounceable identifiers.""" + + homepage = "https://github.com/richfitz/ids" + cran = "ids" + + version('1.0.1', sha256='b6212a186063c23116c5cbd3cca65dbb8977dd737261e4526ebee8f64852cfe8') + + depends_on('r-openssl', type=('build', 'run')) + depends_on('r-uuid', type=('build', 'run')) |