Merge pull request #241363 from dotemup/tqsl

tqsl: add wrapGAppsHook, remove cmakeWrapper

authored by

Nick Cao and committed by
GitHub
75b33efd c36301bc

+3 -3
+3 -3
pkgs/applications/radio/tqsl/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK32 }: 1 + { lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, wxGTK32, wrapGAppsHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tqsl"; ··· 9 9 sha256 = "sha256-UGPMp1mAarHWuLbZu2wWpjgCdf8ZKj0Mwkqp32U5/8w="; 10 10 }; 11 11 12 - nativeBuildInputs = [ cmake makeWrapper ]; 12 + nativeBuildInputs = [ cmake wrapGAppsHook ]; 13 13 buildInputs = [ 14 14 expat 15 15 openssl 16 16 zlib 17 - db 17 + lmdb 18 18 (curl.override { inherit openssl; }) 19 19 wxGTK32 20 20 ];