about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authora-n-n-a-l-e-e <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-18 14:49:10 -0800
committerGitHub <noreply@github.com>2024-01-18 14:49:10 -0800
commit11a146b96c65eec5b53b2d9951ad3c04cc3a38e0 (patch)
tree9000c37e8e1f1c1146c4afb1287bedec741bf968 /pkgs/games
parent74311987ba9bbf02d06ea5e93559d8764cdeb3f0 (diff)
parent212ff04ac0bd01457b954c67919e2c251597e65e (diff)
Merge pull request #279063 from rafaelrc7/starsector-fix
starsector: add missing runtime dependency xrandr
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/starsector/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/starsector/default.nix b/pkgs/games/starsector/default.nix
index 2d70022049e1b..2dbb0ed547915 100644
--- a/pkgs/games/starsector/default.nix
+++ b/pkgs/games/starsector/default.nix
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
     ln -s $out/graphics/ui/s_icon64.png $out/share/icons/hicolor/64x64/apps/starsector.png
 
     wrapProgram $out/share/starsector/starsector.sh \
-      --prefix PATH : ${lib.makeBinPath [ openjdk ]} \
+      --prefix PATH : ${lib.makeBinPath [ openjdk xorg.xrandr ]} \
       --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath buildInputs} \
       --run 'mkdir -p ''${XDG_DATA_HOME:-~/.local/share}/starsector' \
       --chdir "$out/share/starsector"
@@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
     homepage = "https://fractalsoftworks.com";
     sourceProvenance = with sourceTypes; [ binaryBytecode ];
     license = licenses.unfree;
-    maintainers = with maintainers; [ bbigras ];
+    maintainers = with maintainers; [ bbigras rafaelrc ];
   };
 
   passthru.updateScript = writeScript "starsector-update-script" ''