mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-28 15:27:18 -05:00
22 lines
313 B
Nix
22 lines
313 B
Nix
with (import <nixpkgs> {});
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
curl
|
|
botan2
|
|
# libXi
|
|
# libXtst
|
|
# libargon2
|
|
minizip
|
|
pcsclite
|
|
qrencode
|
|
# qtbase
|
|
# qtsvg
|
|
# qtx11extras
|
|
readline
|
|
zlib
|
|
];
|
|
# ++ optional stdenv.isLinux libusb1
|
|
# ++ optional stdenv.isDarwin qtmacextras;
|
|
}
|