mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
bugdom: fixed darwin build
This commit is contained in:
parent
8eaad3548e
commit
267ce056f3
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, SDL2, IOKit, Foundation, cmake, makeWrapper }:
|
||||
{ lib, stdenv, fetchFromGitHub, SDL2, IOKit, Foundation, OpenGL, cmake, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bugdom";
|
||||
@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
|
||||
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
IOKit
|
||||
Foundation
|
||||
OpenGL
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -36527,7 +36527,7 @@ with pkgs;
|
||||
btanks = callPackage ../games/btanks { };
|
||||
|
||||
bugdom = callPackage ../games/bugdom {
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit Foundation;
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit Foundation OpenGL;
|
||||
};
|
||||
|
||||
bzflag = callPackage ../games/bzflag {
|
||||
|
Loading…
Reference in New Issue
Block a user