summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mold/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mold/package.py b/var/spack/repos/builtin/packages/mold/package.py
new file mode 100644
index 0000000000..c1380caadd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/mold/package.py
@@ -0,0 +1,20 @@
+# 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 Mold(CMakePackage):
+ """mold: A Modern Linker"""
+
+ homepage = "https://github.com/rui314/mold"
+ url = "https://github.com/rui314/mold/archive/refs/heads/release/1.7.1.zip"
+
+ maintainers = ["jabcross"]
+
+ version("1.7.1", sha256="e155f647c4c8555697f2d9544ba2f93a67023c4fff21b5b56aa3157700e14364")
+
+ depends_on("zlib")
+ depends_on("openssl")