diff options
author | Will McKinnon <[email protected]> | 2023-03-18 01:59:12 -0400 |
---|---|---|
committer | Will McKinnon <[email protected]> | 2023-03-18 01:59:12 -0400 |
commit | 474bfb460adab10ba0ca208891653d278ce1fbb9 (patch) | |
tree | a748467785d3a5d527fb0118931607e8abb9fdbf | |
parent | 9a0d2899a24d75ca1bebade49f155c5f12a5128f (diff) |
fix: updated flake
-rw-r--r-- | flake.nix | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 )''; }; }); |