mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #171991 from elatov/pkg/fwbuilder
fwbuilder: add wayland support
This commit is contained in:
commit
cdb8f017e7
@ -1,4 +1,13 @@
|
||||
{ stdenv, lib, fetchFromGitHub, cmake, qtbase, wrapQtAppsHook }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, qtbase
|
||||
, wrapQtAppsHook
|
||||
, wayland
|
||||
, wayland-protocols
|
||||
, qtwayland
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fwbuilder";
|
||||
@ -16,6 +25,12 @@ stdenv.mkDerivation rec {
|
||||
wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
wayland
|
||||
wayland-protocols
|
||||
qtwayland
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [
|
||||
"-Wno-error=misleading-indentation"
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user