From af42ffa13b9ad3bb9159840a61afbb72bcfe2c70 Mon Sep 17 00:00:00 2001 From: Fl1tzi Date: Sun, 14 Jan 2024 02:19:32 +0100 Subject: [PATCH] simplify shell.nix --- shell.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/shell.nix b/shell.nix index 7d9242f..ca566f8 100644 --- a/shell.nix +++ b/shell.nix @@ -5,14 +5,15 @@ with (import {}); 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 ]; }