microdeck/shell.nix

20 lines
228 B
Nix
Raw Permalink Normal View History

2024-01-14 01:17:46 +00:00
with (import <nixpkgs> {});
# shell for dev environment
mkShell {
# build deps
nativeBuildInputs = [
2024-01-14 01:19:32 +00:00
cargo
cmake
pkg-config
2024-01-14 01:17:46 +00:00
];
# runtime build deps
buildInputs = [
2024-01-14 01:19:32 +00:00
udev
freetype
expat
2024-01-14 01:17:46 +00:00
];
}