tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
moon-buggy: add darwin compatibility
Samuel-Martineau
2 years ago
de061611
a5fcd810
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
games
moon-buggy
default.nix
+7
-4
pkgs/games/moon-buggy/default.nix
···
1
1
-
{lib, stdenv, fetchurl, ncurses}:
2
2
-
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchurl
4
4
+
, ncurses
5
5
+
}:
3
6
stdenv.mkDerivation rec {
4
7
pname = "moon-buggy";
5
8
version = "1.0.51";
···
16
19
meta = {
17
20
description = "A simple character graphics game where you drive some kind of car across the moon's surface";
18
21
license = lib.licenses.gpl2;
19
19
-
maintainers = [lib.maintainers.rybern];
20
20
-
platforms = lib.platforms.linux;
22
22
+
maintainers = [ lib.maintainers.rybern ];
23
23
+
platforms = lib.platforms.linux ++ lib.platforms.darwin;
21
24
homepage = "https://www.seehuhn.de/pages/moon-buggy";
22
25
};
23
26
}