mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #171991 from elatov/pkg/fwbuilder
fwbuilder: add wayland support
This commit is contained in:
commit
cdb8f017e7
1 changed files with 16 additions and 1 deletions
|
@ -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"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue