summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-20 07:34:46 +0100
committerGitHub <noreply@github.com>2023-11-20 07:34:46 +0100
commit789d57c5cfc2468d6a306162b35c74f1c7a9e354 (patch)
tree212df303cab2f70f16128f37c74d969c570e7fae /pkgs/games
parentc5dbdb6182ee2b089ef060b76052adc6a3547680 (diff)
parentde06161146c0f5e95ebf0a587df9b853eb684359 (diff)
Merge pull request #268219 from Samuel-Martineau/fix/moon-buggy
moon-buggy: add darwin compatibility
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/moon-buggy/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/games/moon-buggy/default.nix b/pkgs/games/moon-buggy/default.nix
index 12eb6b24a806c..87e089eb9571d 100644
--- a/pkgs/games/moon-buggy/default.nix
+++ b/pkgs/games/moon-buggy/default.nix
@@ -1,5 +1,8 @@
-{lib, stdenv, fetchurl, ncurses}:
-
+{ lib
+, stdenv
+, fetchurl
+, ncurses
+}:
 stdenv.mkDerivation rec {
   pname = "moon-buggy";
   version = "1.0.51";
@@ -16,8 +19,8 @@ stdenv.mkDerivation rec {
   meta = {
     description = "A simple character graphics game where you drive some kind of car across the moon's surface";
     license = lib.licenses.gpl2;
-    maintainers = [lib.maintainers.rybern];
-    platforms = lib.platforms.linux;
+    maintainers = [ lib.maintainers.rybern ];
+    platforms = lib.platforms.linux ++ lib.platforms.darwin;
     homepage = "https://www.seehuhn.de/pages/moon-buggy";
   };
 }