From 474bfb460adab10ba0ca208891653d278ce1fbb9 Mon Sep 17 00:00:00 2001 From: Will McKinnon Date: Sat, 18 Mar 2023 01:59:12 -0400 Subject: [PATCH] fix: updated flake --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1d1288d9..49d0d34b 100644 --- a/flake.nix +++ b/flake.nix @@ -40,7 +40,7 @@ default = pkgs.mkShell { name = "swayfx-shell"; depsBuildBuild = with pkgs; [ pkg-config ]; - inputsFrom = [ self.packages.${system}.swayfx-unwrapped pkgs.wlroots ]; + inputsFrom = [ self.packages.${system}.swayfx-unwrapped pkgs.wlroots_0_16 ]; nativeBuildInputs = with pkgs; [ cmake @@ -49,12 +49,13 @@ pkg-config wayland-scanner scdoc + hwdata # for wlroots ]; shellHook = with pkgs; ''( mkdir -p "$PWD/subprojects" cd "$PWD/subprojects" - cp -R --no-preserve=mode,ownership ${wlroots.src} wlroots + cp -R --no-preserve=mode,ownership ${wlroots_0_16.src} wlroots )''; }; });