Merge pull request #171991 from elatov/pkg/fwbuilder

fwbuilder: add wayland support
This commit is contained in:
Sandro 2022-05-11 23:09:20 +02:00 committed by GitHub
commit cdb8f017e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,13 @@
{ stdenv, lib, fetchFromGitHub, cmake, qtbase, wrapQtAppsHook }: { lib
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, wrapQtAppsHook
, wayland
, wayland-protocols
, qtwayland
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fwbuilder"; pname = "fwbuilder";
@ -16,6 +25,12 @@ stdenv.mkDerivation rec {
wrapQtAppsHook wrapQtAppsHook
]; ];
buildInputs = [
wayland
wayland-protocols
qtwayland
];
NIX_CFLAGS_COMPILE = [ NIX_CFLAGS_COMPILE = [
"-Wno-error=misleading-indentation" "-Wno-error=misleading-indentation"
]; ];