fceux: fix missing dependencies

strictDeps to the rescue!
This commit is contained in:
Anderson Torres 2024-10-14 21:40:38 -03:00
parent 7bb6a0437b
commit d9de98d7e9

View File

@ -3,7 +3,11 @@
SDL2,
cmake,
fetchFromGitHub,
lua,
ffmpeg,
libX11,
libXdmcp,
libxcb,
lua5_1,
minizip,
pkg-config,
qt5,
@ -12,7 +16,7 @@
}:
let
inherit (qt5) wrapQtAppsHook;
inherit (qt5) qttools wrapQtAppsHook;
in
stdenv.mkDerivation (finalAttrs: {
pname = "fceux";
@ -33,11 +37,18 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
SDL2
lua
ffmpeg
libX11
libXdmcp
libxcb
lua5_1
minizip
qttools
x264
];
strictDeps = true;
meta = {
homepage = "http://www.fceux.com/";
description = "Nintendo Entertainment System (NES) Emulator";