1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

xtris: fix darwin build

This commit is contained in:
Ben Siraphob 2022-03-29 09:36:30 -05:00
parent f5054121cb
commit ea35502fe4
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

View file

@ -18,10 +18,12 @@ stdenv.mkDerivation rec {
'';
buildInputs = [ xorg.libX11 ];
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
meta = with lib; {
description = "A multi-player version of the classical game of Tetris, for the X Window system";
homepage = "https://web.archive.org/web/20120315061213/http://www.iagora.com/~espel/xtris/xtris.html";
license = licenses.gpl2;
platforms = platforms.linux;
platforms = platforms.unix;
};
}