22 lines
260 B
Nix
22 lines
260 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rust-env";
|
|
|
|
nativeBuildInputs = [
|
|
rustc
|
|
cargo
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [
|
|
systemd
|
|
SDL2
|
|
SDL2_image
|
|
SDL2_mixer
|
|
SDL2_net
|
|
SDL2_ttf
|
|
];
|
|
|
|
RUST_BACKTRACE = 1;
|
|
}
|