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 { mkShell {
# build deps # build deps
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.cmake cargo
pkgs.pkg-config cmake
pkg-config
]; ];
# runtime build deps # runtime build deps
buildInputs = [ buildInputs = [
pkgs.udev udev
pkgs.freetype freetype
pkgs.expat expat
]; ];
} }