Commit d9de98d7 authored by Anderson Torres's avatar Anderson Torres
Browse files

fceux: fix missing dependencies

strictDeps to the rescue!
parent 7bb6a043
Loading
Loading
Loading
Loading
+14 −3
Original line number Diff line number Diff line
@@ -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";