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