summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/p2300/package.py
blob: 721c7d60c727cafc99fe59d629504b17682702ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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 P2300(CMakePackage):
    """The proposed C++ framework for asynchronous and parallel programming."""

    homepage = "https://github.com/NVIDIA/stdexec"
    git = "https://github.com/NVIDIA/stdexec.git"
    maintainers = ["msimberg", "aurianer"]

    version("main", branch="main")

    depends_on("cmake@3.22.1:", type="build")

    conflicts("%gcc@:10")
    conflicts("%clang@:13")