about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authordotemup <fireworkskid08@gmail.com>2023-07-03 18:51:06 -0400
committerdotemup <fireworkskid08@gmail.com>2023-07-03 18:51:06 -0400
commitfb15b4ac4ed0f757c574bdba240607c2a9201f46 (patch)
tree1de37a4eb727510b1a8f997f9f5ae58651757767 /pkgs
parent9cf56143a3078dc2e933b9df48372e721693c3c2 (diff)
tqsl: add wrapGAppsHook, remove cmakeWrapper
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/radio/tqsl/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/radio/tqsl/default.nix b/pkgs/applications/radio/tqsl/default.nix
index d5f798fce4609..085706658afff 100644
--- a/pkgs/applications/radio/tqsl/default.nix
+++ b/pkgs/applications/radio/tqsl/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK32 }:
+{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, wxGTK32, wrapGAppsHook }:
 
 stdenv.mkDerivation rec {
   pname = "tqsl";
@@ -9,12 +9,12 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-UGPMp1mAarHWuLbZu2wWpjgCdf8ZKj0Mwkqp32U5/8w=";
   };
 
-  nativeBuildInputs = [ cmake makeWrapper ];
+  nativeBuildInputs = [ cmake wrapGAppsHook ];
   buildInputs = [
     expat
     openssl
     zlib
-    db
+    lmdb
     (curl.override { inherit openssl; })
     wxGTK32
   ];