From badb50e13b7bb3f8d5ac2cca1cf93859384ef216 Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Tue, 13 Dec 2022 11:04:19 +0100
Subject: [PATCH] [ogs] Added libglu1-mesa.

---
 ogscm/recipes/ogs.py | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/ogscm/recipes/ogs.py b/ogscm/recipes/ogs.py
index b04e598..d8ebe7a 100644
--- a/ogscm/recipes/ogs.py
+++ b/ogscm/recipes/ogs.py
@@ -646,5 +646,11 @@ if local_args.ogs != "off" and local_args.ogs != "clean":
 # Required for vtk from Python (for notebooks, VTUInterface)
 # https://github.com/Kaggle/docker-python/pull/358
 # xvfb for PyVista
-Stage0 += packages(apt=["libgl1", "xvfb"], yum=["mesa-libGL", "xorg-x11-server-Xvfb"])
-Stage1 += packages(apt=["libgl1", "xvfb"], yum=["mesa-libGL", "xorg-x11-server-Xvfb"])
+Stage0 += packages(
+    apt=["libgl1", "xvfb", "libglu1-mesa"],
+    yum=["mesa-libGL", "xorg-x11-server-Xvfb", "mesa-libGLU"],
+)
+Stage1 += packages(
+    apt=["libgl1", "xvfb", "libglu1-mesa"],
+    yum=["mesa-libGL", "xorg-x11-server-Xvfb", "mesa-libGLU"],
+)
-- 
GitLab