summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/rkt-compiler-lib/package.py
blob: a08eb5a3c0ec110c990d5d0ac0e5ba495d78d33e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 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 RktCompilerLib(RacketPackage):
    """Stub package for packages which are currently part of core
    Racket installation (but which may change in the future)."""

    git = "ssh://git@github.com/racket/racket.git"

    maintainers("elfprince13")

    version("8.3", commit="cab83438422bfea0e4bd74bc3e8305e6517cf25f")  # tag='v8.3'
    depends_on("rkt-base@8.3", type=("build", "run"), when="@8.3")
    depends_on("rkt-scheme-lib@8.3", type=("build", "run"), when="@8.3")
    depends_on("rkt-rackunit-lib@8.3", type=("build", "run"), when="@8.3")
    depends_on("rkt-zo-lib@1.3", type=("build", "run"), when="@8.3")

    racket_name = "compiler-lib"