microdeck/shell.nix
2024-01-14 02:19:32 +01:00

20 lines
228 B
Nix

with (import <nixpkgs> {});
# shell for dev environment
mkShell {
# build deps
nativeBuildInputs = [
cargo
cmake
pkg-config
];
# runtime build deps
buildInputs = [
udev
freetype
expat
];
}