nixpkgs/pkgs/tools/X11/wayv/default.nix
Sergei Trofimovich d16032e754 wayv: pull patch pending upstream inclusion for -fno-common toolchain support
Without the change build fails on upstream gcc-10 as:

    ld: process.o:(.bss+0x0): multiple definition of `child'; backend.o:(.bss+0x0): first defined here
2022-06-03 07:28:01 +01:00

42 lines
1.2 KiB
Nix

{lib, stdenv, fetchFromGitHub, fetchpatch, libX11}:
stdenv.mkDerivation rec {
pname = "wayv";
version = "0.3";
src = fetchFromGitHub {
owner = "mikemb";
repo = pname;
rev = "b716877603250f690f08b593bf30fd5e8a93a872";
sha256 = "046dvaq6na1fyxz5nrjg13aaz6ific9wbygck0dknqqfmmjrsv3b";
};
patches = [
# Pull patch pending upstream inclusion for -fno-common toolchain support:
# https://github.com/mikemb/wayV/pull/1
(fetchpatch {
name = "fno-common.patch";
url = "https://github.com/mikemb/wayV/commit/b927793e2a2c92ff1f97b9df9e58c26e73e72012.patch";
sha256 = "19i10966b0n710dic64p5ajsllkjnz16bp0crxfy9vv08hj1xygi";
})
];
buildInputs = [ libX11 ];
postInstall = ''
make -C doc install
mkdir -p "$out"/share/doc/wayv
cp [A-Z][A-Z]* "$out"/share/doc/wayv
cp doc/[A-Z][A-Z]* "$out"/share/doc/wayv
cp doc/*.txt "$out"/share/doc/wayv
cp doc/*.jpg "$out"/share/doc/wayv
'';
meta = {
description = "A gesture control for X11";
license = lib.licenses.gpl2Plus ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
homepage = "https://github.com/mikemb/wayV";
};
}