serial_counter/shell.nix
2020-05-09 21:36:24 +02:00

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;
}