2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2020-02-21 08:21:29 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2020-02-21 08:21:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DecentralizedInternet(MakefilePackage):
|
|
|
|
"""A library for building decentralized and grid computing projects"""
|
2022-07-31 06:19:18 +08:00
|
|
|
|
2020-02-21 08:21:29 +08:00
|
|
|
homepage = "https://lonero.readthedocs.io"
|
|
|
|
url = "https://github.com/Lonero-Team/Decentralized-Internet/releases/download/4.2.3/Decentralized.Internet.tar.gz"
|
2023-12-23 03:29:11 +08:00
|
|
|
|
|
|
|
license("MIT")
|
|
|
|
|
2023-02-02 13:07:25 +08:00
|
|
|
maintainers("Lonero-Team", "Mentors4edu")
|
2020-02-21 08:21:29 +08:00
|
|
|
version("4.2.3", sha256="2922b9128b411ece2f04d07942a453f1e772548aa27b3936c9f9bcfbc0737058")
|