LXQT-config: Adds patch for Cmake >3.8

+10 -1
+10 -1
pkgs/desktops/lxqt/core/lxqt-config/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, standardPatch, qtbase, qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt, libqtxdg, libpthreadstubs, xorg }: 1 + { stdenv, fetchFromGitHub, fetchpatch, cmake, pkgconfig, lxqt-build-tools, standardPatch, qtbase, qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt, libqtxdg, libpthreadstubs, xorg }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "${pname}-${version}"; ··· 45 45 platforms = with platforms; unix; 46 46 maintainers = with maintainers; [ romildo ]; 47 47 }; 48 + 49 + patches = [ 50 + # Fixes a FTBFS with CMake v3.8 51 + (fetchpatch { 52 + url = https://github.com/lxde/lxqt-config/commit/bca652a75f8a497a69b1fbc1c7eaa353f6b4eef8.patch; 53 + sha256 = "17k26xj97ks9gvcjhiwc5y39fciria4xyxrzcz67zj0flqm3cmrf"; 54 + }) 55 + ]; 56 + 48 57 }