mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
flycast: fix vulkan
Update pkgs/applications/emulators/flycast/default.nix
This commit is contained in:
parent
5f6c2aa9a4
commit
ffb54f78f6
1 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, makeWrapper
|
||||
, alsa-lib
|
||||
, libX11
|
||||
, libevdev
|
||||
|
@ -11,6 +12,7 @@
|
|||
, SDL2
|
||||
, libzip
|
||||
, miniupnpc
|
||||
, vulkan-loader
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -28,6 +30,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
|
@ -41,6 +44,10 @@ stdenv.mkDerivation rec {
|
|||
miniupnpc
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/flycast --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/flyinghead/flycast";
|
||||
changelog = "https://github.com/flyinghead/flycast/releases/tag/v${version}";
|
||||
|
|
Loading…
Reference in a new issue