nixpkgs/pkgs/applications/misc/keepassxc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

151 lines
4.1 KiB
Nix
Raw Normal View History

2022-12-22 14:54:39 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qttools
2020-07-08 15:14:58 +00:00
, asciidoctor
2022-03-27 22:17:37 +00:00
, botan2
, curl
, libXi
, libXtst
, libargon2
2022-03-27 22:17:37 +00:00
, libusb1
, minizip
, pcsclite
, pkg-config
, qrencode
, qtbase
2018-03-25 16:46:28 +00:00
, qtmacextras
, qtsvg
, qtx11extras
, readline
, wrapGAppsHook3
, wrapQtAppsHook
, zlib
2023-02-18 19:44:54 +00:00
, LocalAuthentication
, withKeePassBrowser ? true
, withKeePassBrowserPasskeys ? true
2022-10-23 18:56:38 +00:00
, withKeePassFDOSecrets ? true
, withKeePassKeeShare ? true
, withKeePassNetworking ? true
2022-10-23 18:56:38 +00:00
, withKeePassSSHAgent ? true
, withKeePassTouchID ? true
2022-10-23 18:56:38 +00:00
, withKeePassX11 ? true
2022-03-27 22:17:37 +00:00
, withKeePassYubiKey ? true
, nixosTests
}:
2016-08-29 00:02:19 +00:00
stdenv.mkDerivation rec {
pname = "keepassxc";
2024-05-06 12:10:33 +00:00
version = "2.7.8";
2016-08-29 00:02:19 +00:00
src = fetchFromGitHub {
owner = "keepassxreboot";
repo = "keepassxc";
2019-09-08 23:38:31 +00:00
rev = version;
2024-05-06 12:10:33 +00:00
hash = "sha256-Gb5/CPhn/phVVvz9BFv7rb12n/P3rPNl5r2gA+E5b0o=";
2016-08-29 00:02:19 +00:00
};
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang (toString [
2018-03-25 16:46:28 +00:00
"-Wno-old-style-cast"
"-Wno-error"
"-D__BIG_ENDIAN__=${if stdenv.isBigEndian then "1" else "0"}"
]);
2018-03-04 20:49:34 +00:00
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-rpath ${libargon2}/lib";
patches = [
./darwin.patch
];
cmakeFlags = [
"-DKEEPASSXC_BUILD_TYPE=Release"
"-DWITH_GUI_TESTS=ON"
"-DWITH_XC_UPDATECHECK=OFF"
]
++ (lib.optional (!withKeePassX11) "-DWITH_XC_X11=OFF")
++ (lib.optional (withKeePassFDOSecrets && stdenv.isLinux) "-DWITH_XC_FDOSECRETS=ON")
++ (lib.optional (withKeePassYubiKey && stdenv.isLinux) "-DWITH_XC_YUBIKEY=ON")
++ (lib.optional withKeePassBrowser "-DWITH_XC_BROWSER=ON")
++ (lib.optional withKeePassBrowserPasskeys "-DWITH_XC_BROWSER_PASSKEYS=ON")
++ (lib.optional withKeePassKeeShare "-DWITH_XC_KEESHARE=ON")
++ (lib.optional withKeePassNetworking "-DWITH_XC_NETWORKING=ON")
++ (lib.optional withKeePassSSHAgent "-DWITH_XC_SSHAGENT=ON");
2017-06-25 08:36:06 +00:00
2017-06-26 06:22:05 +00:00
doCheck = true;
checkPhase = ''
2021-01-18 16:32:28 +00:00
runHook preCheck
2017-06-26 06:22:05 +00:00
export LC_ALL="en_US.UTF-8"
export QT_QPA_PLATFORM=offscreen
export QT_PLUGIN_PATH="${qtbase.bin}/${qtbase.qtPluginPrefix}"
2022-12-22 14:54:39 +00:00
# testcli, testgui and testkdbx4 are flaky - skip them all
# testautotype on darwin throws "QWidget: Cannot create a QWidget without QApplication"
make test ARGS+="-E 'testcli|testgui${lib.optionalString stdenv.isDarwin "|testautotype|testkdbx4"}' --output-on-failure"
2021-01-18 16:32:28 +00:00
runHook postCheck
2017-06-26 06:22:05 +00:00
'';
nativeBuildInputs = [
asciidoctor
cmake
wrapQtAppsHook
qttools
pkg-config
]
++ lib.optional (!stdenv.isDarwin) wrapGAppsHook3;
dontWrapGApps = true;
2022-11-28 23:43:22 +00:00
preFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
2022-12-22 14:54:39 +00:00
'' + lib.optionalString stdenv.isDarwin ''
wrapQtApp "$out/Applications/KeePassXC.app/Contents/MacOS/KeePassXC"
'';
# See https://github.com/keepassxreboot/keepassxc/blob/cd7a53abbbb81e468efb33eb56eefc12739969b8/src/browser/NativeMessageInstaller.cpp#L317
postInstall = lib.optionalString withKeePassBrowser ''
mkdir -p "$out/lib/mozilla/native-messaging-hosts"
substituteAll "${./firefox-native-messaging-host.json}" "$out/lib/mozilla/native-messaging-hosts/org.keepassxc.keepassxc_browser.json"
'';
buildInputs = [
curl
2022-03-27 22:17:37 +00:00
botan2
libXi
libXtst
libargon2
2022-03-27 22:17:37 +00:00
minizip
pcsclite
qrencode
qtbase
qtsvg
readline
zlib
]
2023-02-18 19:44:54 +00:00
++ lib.optional (stdenv.isDarwin && withKeePassTouchID) LocalAuthentication
++ lib.optional stdenv.isDarwin qtmacextras
++ lib.optional stdenv.isLinux libusb1
++ lib.optional withKeePassX11 qtx11extras;
passthru.tests = nixosTests.keepassxc;
meta = with lib; {
description = "Offline password manager with many features";
longDescription = ''
A community fork of KeePassX, which is itself a port of KeePass Password Safe.
The goal is to extend and improve KeePassX with new features and bugfixes,
to provide a feature-rich, fully cross-platform and modern open-source password manager.
Accessible via native cross-platform GUI, CLI, has browser integration
using the KeePassXC Browser Extension (https://github.com/keepassxreboot/keepassxc-browser)
'';
homepage = "https://keepassxc.org/";
2021-01-18 16:32:28 +00:00
license = licenses.gpl2Plus;
2023-11-03 16:52:06 +00:00
maintainers = with maintainers; [ jonafato blankparticle ];
platforms = platforms.linux ++ platforms.darwin;
2016-08-29 00:02:19 +00:00
};
}