Merge pull request #273452 from wegank/gebaar-libinput-stdenv
gebaar-libinput: fix build with gcc 11+
This commit is contained in:
commit
5c7a664603
2 changed files with 10 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchFromGitHub, pkg-config, cmake, libinput, zlib }:
|
||||
{ stdenv, lib, fetchFromGitHub, fetchpatch, pkg-config, cmake, libinput, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gebaar-libinput";
|
||||
|
@ -12,6 +12,14 @@ stdenv.mkDerivation rec {
|
|||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
patches = [
|
||||
# fix build with gcc 11+
|
||||
(fetchpatch {
|
||||
url = "https://github.com/9ary/gebaar-libinput-fork/commit/25cac08a5f1aed1951b03de12fa0010a0964967d.patch";
|
||||
hash = "sha256-CtgfMTBCXotiPAXc7cA3h+7Kb0NHFi/q7w72IY32CyA=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
buildInputs = [ libinput zlib ];
|
||||
|
||||
|
|
|
@ -7007,7 +7007,7 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk_11_0.frameworks) Security CoreServices SystemConfiguration;
|
||||
};
|
||||
|
||||
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { stdenv = gcc10StdenvCompat; };
|
||||
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { };
|
||||
|
||||
kime = callPackage ../tools/inputmethods/kime { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue