diff --git a/Golden_Repo/s/SuiteSparse/SuiteSparse-5.13.0-gpsmkl-2022a.eb b/Golden_Repo/s/SuiteSparse/SuiteSparse-5.13.0-gpsmkl-2022a.eb
new file mode 100644
index 0000000000000000000000000000000000000000..106af555e2df7daa72f290a002dac365389eee61
--- /dev/null
+++ b/Golden_Repo/s/SuiteSparse/SuiteSparse-5.13.0-gpsmkl-2022a.eb
@@ -0,0 +1,30 @@
+name = 'SuiteSparse'
+version = '5.13.0'
+
+homepage = 'https://faculty.cse.tamu.edu/davis/suitesparse.html'
+description = """SuiteSparse is a collection of libraries manipulate sparse matrices."""
+
+toolchain = {'name': 'gpsmkl', 'version': '2022a'}
+toolchainopts = {'unroll': True, 'pic': True}
+
+source_urls = ['https://github.com/DrTimothyAldenDavis/SuiteSparse/archive']
+sources = ['v%(version)s.tar.gz']
+checksums = ['59c6ca2959623f0c69226cf9afb9a018d12a37fab3a8869db5f6d7f83b6b147d']
+
+builddependencies = [
+    ('CMake', '3.23.1'),
+    ('M4', '1.4.19'),
+]
+
+dependencies = [
+    ('METIS', '5.1.0', '-IDX64'),
+    ('CUDA', '11.7', '', SYSTEM),
+    ('MPFR', '4.1.0'),
+]
+
+# make sure that bin/demo can find libsuitesparseconfig.so.5 during build
+prebuildopts = "export LD_LIBRARY_PATH=%(builddir)s/SuiteSparse-%(version)s/lib:$LD_LIBRARY_PATH && "
+# remove broken symlink
+prebuildopts += "rm GraphBLAS/CUDA/test/graphblascuda_test && "
+
+moduleclass = 'numlib'