Merge pull request #71957 from lightbulbjim/librecad-wayland

librecad: fix missing app name and icon on Wayland

authored by

Doron Behar and committed by
GitHub
f6f29071 5277b1d1

+9 -1
+9 -1
pkgs/applications/misc/librecad/default.nix
··· 1 1 { boost 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 , installShellFiles 4 5 , mkDerivationWith 5 6 , muparser ··· 16 17 stdenv = gcc8Stdenv; 17 18 in 18 19 19 - # Doesn't build with gcc9 20 + # Doesn't build with gcc9 20 21 mkDerivationWith stdenv.mkDerivation rec { 21 22 pname = "librecad"; 22 23 version = "2.2.0-rc1"; ··· 30 31 31 32 patches = [ 32 33 ./fix_qt_5_11_build.patch 34 + ( 35 + fetchpatch { 36 + # Fix missing app name and icon on Wayland. 37 + url = "https://github.com/LibreCAD/LibreCAD/commit/a17f8281093403f0c7c36996232665ed21906688.patch"; 38 + sha256 = "1x46psh4bcx2hxck4l83ki43g1252vb033i2x94h4rpai9hww4d5"; 39 + } 40 + ) 33 41 ]; 34 42 35 43 postPatch = ''