19 lines
743 B
Python
19 lines
743 B
Python
# Copyright 2013-2019 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 RLambdaR(RPackage):
|
|
"""A language extension to efficiently write functional programs in R.
|
|
Syntax extensions include multi-part function definitions, pattern
|
|
matching, guard statements, built-in (optional) type safety."""
|
|
|
|
homepage = "https://cran.rstudio.com/web/packages/lambda.r/index.html"
|
|
url = "https://cran.rstudio.com/src/contrib/lambda.r_1.2.tar.gz"
|
|
list_url = "https://cran.rstudio.com/src/contrib/Archive/lambda.r"
|
|
|
|
version('1.2', 'bda49898b85ad5902880a31f43b432e2')
|