summaryrefslogtreecommitdiff
path: root/share/spack/templates/misc/coconcretization.pyt
blob: cd313216d938a2558553418e667bd6481d30dc1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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)


class Concretizationroot(Package):
    url = 'fake_url'

    version('1.0')

{% for dep in specs %}
    depends_on('{{ dep }}')
{% endfor %}