3dpong: fix darwin and cross-compiled builds
This commit is contained in:
parent
d55716bb59
commit
ae43e79b68
@ -34,12 +34,15 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
buildInputs = [ libX11 ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"CC=${stdenv.cc.targetPrefix}cc" # fix darwin and cross-compiled builds
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.newbreedsoftware.com/3dpong/";
|
||||
description = "One or two player 3d sports game based on Pong from Atari";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user