mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
fceux: fix missing dependencies
strictDeps to the rescue!
This commit is contained in:
parent
7bb6a0437b
commit
d9de98d7e9
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user