simplify shell.nix

This commit is contained in:
Fl1tzi 2024-01-14 02:19:32 +01:00
parent e8519ddcf7
commit af42ffa13b
No known key found for this signature in database
GPG key ID: 06B333727810C686

View file

@ -5,14 +5,15 @@ with (import <nixpkgs> {});
mkShell {
# build deps
nativeBuildInputs = [
pkgs.cmake
pkgs.pkg-config
cargo
cmake
pkg-config
];
# runtime build deps
buildInputs = [
pkgs.udev
pkgs.freetype
pkgs.expat
udev
freetype
expat
];
}