From f770d8886012707ddf91eb6f15466d65a294ede7 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Tue, 2 Jul 2024 19:53:21 +0300 Subject: [PATCH] Nix: add hwdata dep --- nix/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/default.nix b/nix/default.nix index fed100c..b144cc8 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -2,6 +2,7 @@ lib, stdenv, cmake, + hwdata, hyprutils, hyprwayland-scanner, libdisplay-info, @@ -43,6 +44,10 @@ stdenv.mkDerivation { wayland-protocols ]; + depsBuildBuild = [ + hwdata + ]; + outputs = ["out" "dev"]; cmakeBuildType = "RelWithDebInfo";