dwl: fix cross

I've moved the install flags into makeFlags because there's no need to
have them only set at install time.
This commit is contained in:
Alyssa Ross 2023-04-23 10:18:55 +00:00 committed by Anderson Torres
parent fc419f5af6
commit cd8b2aa9b2

View file

@ -9,6 +9,7 @@
, pixman
, pkg-config
, substituteAll
, wayland-scanner
, wayland
, wayland-protocols
, wlroots_0_16
@ -36,6 +37,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [
installShellFiles
pkg-config
wayland-scanner
];
buildInputs = [
@ -61,6 +63,13 @@ stdenv.mkDerivation (finalAttrs: {
else writeText "config.def.h" conf;
in lib.optionalString (conf != null) "cp ${configFile} config.def.h";
makeFlags = [
"PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config"
"WAYLAND_SCANNER=wayland-scanner"
"PREFIX=$(out)"
"MANDIR=$(man)/share/man/man1"
];
preBuild = ''
makeFlagsArray+=(
XWAYLAND=${lib.optionalString enableXWayland "-DXWAYLAND"}
@ -68,11 +77,6 @@ stdenv.mkDerivation (finalAttrs: {
)
'';
installFlags = [
"PREFIX=$(out)"
"MANDIR=$(man)/share/man/man1"
];
meta = {
homepage = "https://github.com/djpohly/dwl/";
description = "Dynamic window manager for Wayland";