Merge pull request #155259 from sikmir/tabbed

tabbed: fix cross-compilation
This commit is contained in:
Bobby Rong 2022-01-18 14:20:22 +08:00 committed by GitHub
commit 908929e1de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,9 @@ stdenv.mkDerivation {
buildInputs = [ xorgproto libX11 libXft ];
makeFlags = [
"PREFIX=$(out)"
];
makeFlags = [ "CC:=$(CC)" ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://tools.suckless.org/tabbed";