blob: 8884c656900af4fa691164c692266fdb931d7fb5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.package import *
class RktSchemeLib(RacketPackage):
"""Legacy Scheme Library."""
git = "ssh://git@github.com/racket/scheme-lib.git"
maintainers = ['elfprince13']
version('8.3', commit='a36e729680818712820ee5269f5208c3c0715a6a') # tag='v8.3'
depends_on('rkt-base@8.3', type=('build', 'run'), when='@8.3')
name = 'scheme-lib'
pkgs = True
|