diff options
author | William McKinnon <[email protected]> | 2023-07-17 19:49:05 -0400 |
---|---|---|
committer | William McKinnon <[email protected]> | 2023-07-18 00:21:43 -0400 |
commit | 920c3c70d20e58b4af5a7abe52b24f47b90bc575 (patch) | |
tree | 6f31f59b7edce77e6700f743fee410730c7d96c1 /flake.nix | |
parent | 120ddde3b1c6343b99ecfb790f15ffbe23c8c2b5 (diff) |
updated flake
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -25,23 +25,23 @@ in { default = pkgs.mkShell { name = "scenefx-shell"; + + inputsFrom = [ pkgs.wlroots_0_16 ]; + nativeBuildInputs = with pkgs; [ cmake meson ninja scdoc pkg-config - - wayland - wayland-scanner - wayland-protocols - wlroots_0_16 hwdata - udev - pixman - libxkbcommon - libdrm ]; + + shellHook = with pkgs; ''( + mkdir -p "$PWD/subprojects" + cd "$PWD/subprojects" + cp -R --no-preserve=mode,ownership ${wlroots_0_16.src} wlroots + )''; }; }); }; |