From e6fb535aa564ca8ea8649107461c8f679155d2c5 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Fri, 10 Feb 2023 11:57:19 +0000 Subject: [PATCH] hello-wayland: depend on wayland-scanner Otherwise, wayland-scanner would be picked up from the wayland in buildInputs, which isn't cross-friendly and will stop working when we split wayland-scanner into a separate package. --- pkgs/applications/graphics/hello-wayland/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/graphics/hello-wayland/default.nix b/pkgs/applications/graphics/hello-wayland/default.nix index 79326a6a700f..97b7da3e0f09 100644 --- a/pkgs/applications/graphics/hello-wayland/default.nix +++ b/pkgs/applications/graphics/hello-wayland/default.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation { }; separateDebugInfo = true; - depsBuildBuild = [ pkg-config ]; nativeBuildInputs = [ imagemagick pkg-config wayland-scanner ]; buildInputs = [ wayland wayland-protocols ];