Merge pull request #247010 from wegank/smpeg-darwin

smpeg: unbreak on darwin
This commit is contained in:
Weijia Wang 2023-08-04 00:05:12 +02:00 committed by GitHub
commit 00abdb43c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 1 deletions

View file

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake libtool m4 pkg-config makeWrapper ];
buildInputs = [ SDL gtk2 libGLU libGL ];
buildInputs = [ SDL ] ++ lib.optionals (!stdenv.isDarwin) [ gtk2 libGLU libGL ];
outputs = [ "out" "dev" ];

View file

@ -52,5 +52,6 @@ stdenv.mkDerivation (finalAttrs: {
mainProgram = "hheretic-gl";
maintainers = with lib.maintainers; [ moody ];
inherit (SDL.meta) platforms;
broken = stdenv.isDarwin;
};
})

View file

@ -52,5 +52,6 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [ moody djanatyn ];
mainProgram = "hhexen-gl";
inherit (SDL.meta) platforms;
broken = stdenv.isDarwin;
};
})

View file

@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
inherit (SDL.meta) platforms;
broken = stdenv.isDarwin;
};
}

View file

@ -34,5 +34,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ciil ];
inherit (SDL.meta) platforms;
broken = stdenv.isDarwin;
};
}

View file

@ -54,5 +54,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
broken = stdenv.isDarwin;
};
}

View file

@ -64,5 +64,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
broken = stdenv.isDarwin;
};
}