shells/touchhle: init
This commit is contained in:
parent
98bab04d87
commit
7abcec02bf
|
@ -44,6 +44,7 @@
|
|||
rust9x = pkgs.callPackage ./shells/rust9x { };
|
||||
rust-libclang = pkgs.callPackage ./shells/rust-libclang { };
|
||||
ryujinx = pkgs.callPackage ./shells/ryujinx { };
|
||||
touchhle = pkgs.callPackage ./shells/touchhle { };
|
||||
uboot = pkgs.callPackage ./shells/uboot { };
|
||||
zephyr = pkgs.callPackage ./shells/zephyr { };
|
||||
});
|
||||
|
|
44
shells/touchhle/default.nix
Normal file
44
shells/touchhle/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
lib,
|
||||
mkShell,
|
||||
cargo,
|
||||
rustc,
|
||||
rustfmt,
|
||||
clippy,
|
||||
rust,
|
||||
|
||||
cmake,
|
||||
pkg-config,
|
||||
|
||||
boost,
|
||||
sndio,
|
||||
libGL,
|
||||
pulseaudio,
|
||||
pipewire,
|
||||
SDL2,
|
||||
openal,
|
||||
}:
|
||||
mkShell {
|
||||
packages = [
|
||||
rustc
|
||||
cargo
|
||||
rustfmt
|
||||
clippy
|
||||
|
||||
cmake
|
||||
pkg-config
|
||||
|
||||
boost
|
||||
sndio
|
||||
pulseaudio
|
||||
pipewire
|
||||
SDL2
|
||||
openal
|
||||
];
|
||||
|
||||
LD_LIBRARY_PATH = "${lib.makeLibraryPath [
|
||||
libGL
|
||||
]}";
|
||||
|
||||
RUST_SRC_PATH = "${rust.packages.stable.rustPlatform.rustLibSrc}";
|
||||
}
|
Loading…
Reference in a new issue