summary refs log tree commit diff
path: root/pkgs/applications/misc/pwsafe
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-10-30 03:24:30 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-11-09 00:59:14 +0100
commitc985936c3949f840c99f13b4a7e9a890ea0e342c (patch)
tree09a45e568bc778073be499cb20d5dd6f43c7b76b /pkgs/applications/misc/pwsafe
parent827ea229e7b55d3c0eb7fddd1429519979798d29 (diff)
downloadnixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.tar
nixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.tar.gz
nixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.tar.bz2
nixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.tar.lz
nixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.tar.xz
nixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.tar.zst
nixpkgs-c985936c3949f840c99f13b4a7e9a890ea0e342c.zip
pwsafe: migrate to wxGTK30-gtk3
Diffstat (limited to 'pkgs/applications/misc/pwsafe')
-rw-r--r--pkgs/applications/misc/pwsafe/default.nix49
1 files changed, 40 insertions, 9 deletions
diff --git a/pkgs/applications/misc/pwsafe/default.nix b/pkgs/applications/misc/pwsafe/default.nix
index d5c1115acbf..75f09742c1e 100644
--- a/pkgs/applications/misc/pwsafe/default.nix
+++ b/pkgs/applications/misc/pwsafe/default.nix
@@ -1,8 +1,25 @@
-{ lib, stdenv, fetchFromGitHub
-, cmake, pkg-config, zip, gettext, perl
-, wxGTK30, libXext, libXi, libXt, libXtst, xercesc
-, qrencode, libuuid, libyubikey, yubikey-personalization
-, curl, openssl, file, gitUpdater
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, zip
+, gettext
+, perl
+, wxGTK30-gtk3
+, libXext
+, libXi
+, libXt
+, libXtst
+, xercesc
+, qrencode
+, libuuid
+, libyubikey
+, yubikey-personalization
+, curl
+, openssl
+, file
+, gitUpdater
 }:
 
 stdenv.mkDerivation rec {
@@ -17,12 +34,26 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [
-    cmake gettext perl pkg-config zip
+    cmake
+    gettext
+    perl
+    pkg-config
+    zip
   ];
+
   buildInputs = [
-    libXext libXi libXt libXtst wxGTK30
-    curl qrencode libuuid openssl xercesc
-    libyubikey yubikey-personalization
+    libXext
+    libXi
+    libXt
+    libXtst
+    wxGTK30-gtk3
+    curl
+    qrencode
+    libuuid
+    openssl
+    xercesc
+    libyubikey
+    yubikey-personalization
     file
   ];