moon-buggy: add darwin compatibility

+7 -4
+7 -4
pkgs/games/moon-buggy/default.nix
··· 1 - {lib, stdenv, fetchurl, ncurses}: 2 - 3 stdenv.mkDerivation rec { 4 pname = "moon-buggy"; 5 version = "1.0.51"; ··· 16 meta = { 17 description = "A simple character graphics game where you drive some kind of car across the moon's surface"; 18 license = lib.licenses.gpl2; 19 - maintainers = [lib.maintainers.rybern]; 20 - platforms = lib.platforms.linux; 21 homepage = "https://www.seehuhn.de/pages/moon-buggy"; 22 }; 23 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , ncurses 5 + }: 6 stdenv.mkDerivation rec { 7 pname = "moon-buggy"; 8 version = "1.0.51"; ··· 19 meta = { 20 description = "A simple character graphics game where you drive some kind of car across the moon's surface"; 21 license = lib.licenses.gpl2; 22 + maintainers = [ lib.maintainers.rybern ]; 23 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 24 homepage = "https://www.seehuhn.de/pages/moon-buggy"; 25 }; 26 }