nixpkgs/pkgs/applications/misc/keepassx/community.nix

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

132 lines
3.2 KiB
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv
, fetchFromGitHub
, cmake
, qttools
, darwin
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
, wrapGAppsHook
, wrapQtAppsHook
, zlib
, withKeePassBrowser ? true
, withKeePassKeeShare ? true
2018-03-04 13:18:17 +00:00
, withKeePassSSHAgent ? true
, withKeePassNetworking ? true
, withKeePassTouchID ? true
2022-03-27 22:17:37 +00:00
, withKeePassYubiKey ? true
, withKeePassFDOSecrets ? true
, nixosTests
}:
2021-01-15 05:42:41 +00:00
with lib;
2016-08-29 00:02:19 +00:00
stdenv.mkDerivation rec {
pname = "keepassxc";
2022-03-27 22:17:37 +00:00
version = "2.7.1";
2016-08-29 00:02:19 +00:00
src = fetchFromGitHub {
owner = "keepassxreboot";
repo = "keepassxc";
2019-09-08 23:38:31 +00:00
rev = version;
2022-03-27 22:17:37 +00:00
sha256 = "sha256-BOtehDzlWhhfXj8TOFvFN4f86Hl2EC3rO4qUIl9fqq4=";
2016-08-29 00:02:19 +00:00
};
NIX_CFLAGS_COMPILE = optionalString stdenv.cc.isClang [
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 = optionalString stdenv.isDarwin "-rpath ${libargon2}/lib";
patches = [
./darwin.patch
];
cmakeFlags = [
"-DKEEPASSXC_BUILD_TYPE=Release"
"-DWITH_GUI_TESTS=ON"
"-DWITH_XC_UPDATECHECK=OFF"
]
++ (optional withKeePassBrowser "-DWITH_XC_BROWSER=ON")
++ (optional withKeePassKeeShare "-DWITH_XC_KEESHARE=ON")
++ (optional withKeePassNetworking "-DWITH_XC_NETWORKING=ON")
2022-03-27 22:17:37 +00:00
++ (optional (withKeePassYubiKey && stdenv.isLinux) "-DWITH_XC_YUBIKEY=ON")
++ (optional (withKeePassFDOSecrets && stdenv.isLinux) "-DWITH_XC_FDOSECRETS=ON")
++ (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}"
# testcli and testgui are flaky - skip them both
make test ARGS+="-E 'testcli|testgui' --output-on-failure"
2021-01-18 16:32:28 +00:00
runHook postCheck
2017-06-26 06:22:05 +00:00
'';
nativeBuildInputs = [ asciidoctor cmake wrapGAppsHook wrapQtAppsHook qttools pkg-config ];
dontWrapGApps = true;
postFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
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
qtx11extras
readline
zlib
]
2022-03-27 22:17:37 +00:00
++ optional stdenv.isLinux libusb1
++ optional stdenv.isDarwin qtmacextras
2022-03-27 22:17:37 +00:00
++ optional (stdenv.isDarwin && withKeePassTouchID) darwin.apple_sdk.frameworks.LocalAuthentication;
passthru.tests = nixosTests.keepassxc;
2016-08-29 00:02:19 +00:00
meta = {
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;
2022-10-04 20:38:06 +00:00
maintainers = with maintainers; [ jonafato turion srapenne ];
platforms = platforms.linux ++ platforms.darwin;
2022-03-27 22:17:37 +00:00
broken = stdenv.isDarwin; # see to https://github.com/NixOS/nixpkgs/issues/172165
2016-08-29 00:02:19 +00:00
};
}