2017-12-20 06:46:54 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, makeWrapper, qttools
|
2018-03-04 06:23:33 +01:00
|
|
|
|
|
|
|
, curl
|
2019-04-14 21:10:08 +02:00
|
|
|
, glibcLocales
|
|
|
|
, libXi
|
|
|
|
, libXtst
|
2018-03-04 06:23:33 +01:00
|
|
|
, libargon2
|
|
|
|
, libgcrypt
|
|
|
|
, libgpgerror
|
2019-04-14 21:10:08 +02:00
|
|
|
, libmicrohttpd
|
|
|
|
, libsodium
|
2018-03-04 06:23:33 +01:00
|
|
|
, libyubikey
|
2019-04-14 21:10:08 +02:00
|
|
|
, pkg-config
|
|
|
|
, qrencode
|
|
|
|
, qtbase
|
2018-03-25 18:46:28 +02:00
|
|
|
, qtmacextras
|
2019-04-11 05:13:23 +02:00
|
|
|
, qtsvg
|
2019-04-14 21:10:08 +02:00
|
|
|
, qtx11extras
|
|
|
|
, quazip
|
2019-07-05 17:42:08 +02:00
|
|
|
, wrapQtAppsHook
|
2019-04-14 21:10:08 +02:00
|
|
|
, yubikey-personalization
|
|
|
|
, zlib
|
2018-03-04 06:23:33 +01:00
|
|
|
|
|
|
|
, withKeePassBrowser ? true
|
2019-04-14 21:10:08 +02:00
|
|
|
, withKeePassKeeShare ? true
|
|
|
|
, withKeePassKeeShareSecure ? true
|
2018-03-04 14:18:17 +01:00
|
|
|
, withKeePassSSHAgent ? true
|
2018-03-04 06:23:33 +01:00
|
|
|
, withKeePassNetworking ? false
|
2017-02-21 23:22:08 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-08-29 02:02:19 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-07 16:54:01 +01:00
|
|
|
name = "keepassxc-${version}";
|
2019-04-14 21:10:08 +02:00
|
|
|
version = "2.4.1";
|
2016-08-29 02:02:19 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-10-18 05:43:11 +02:00
|
|
|
owner = "keepassxreboot";
|
2017-02-02 03:21:34 +01:00
|
|
|
repo = "keepassxc";
|
|
|
|
rev = "${version}";
|
2019-04-14 21:10:08 +02:00
|
|
|
sha256 = "1cbfsfdvb4qw6yb0zl6mymdbphnb7lxbfrc5a8cjmn9w8b09kv6m";
|
2016-08-29 02:02:19 +02:00
|
|
|
};
|
|
|
|
|
2018-03-25 18:46:28 +02:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang [
|
|
|
|
"-Wno-old-style-cast"
|
|
|
|
"-Wno-error"
|
|
|
|
"-D__BIG_ENDIAN__=${if stdenv.isBigEndian then "1" else "0"}"
|
|
|
|
];
|
2018-03-04 21:49:34 +01:00
|
|
|
|
2018-03-25 18:46:28 +02:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace "/usr/local/bin" "../bin" \
|
|
|
|
--replace "/usr/local/share/man" "../share/man"
|
|
|
|
'';
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-rpath ${libargon2}/lib";
|
2018-06-24 20:38:51 +02:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
./darwin.patch
|
|
|
|
];
|
2017-12-20 06:46:54 +01:00
|
|
|
|
2017-12-14 17:32:20 +01:00
|
|
|
cmakeFlags = [
|
2018-03-04 06:23:33 +01:00
|
|
|
"-DKEEPASSXC_BUILD_TYPE=Release"
|
2017-12-14 17:32:20 +01:00
|
|
|
"-DWITH_GUI_TESTS=ON"
|
2017-07-18 01:09:50 +02:00
|
|
|
"-DWITH_XC_AUTOTYPE=ON"
|
2019-04-14 21:10:08 +02:00
|
|
|
"-DWITH_XC_UPDATECHECK=OFF"
|
2017-07-18 01:09:50 +02:00
|
|
|
"-DWITH_XC_YUBIKEY=ON"
|
2018-03-04 06:23:33 +01:00
|
|
|
]
|
|
|
|
++ (optional withKeePassBrowser "-DWITH_XC_BROWSER=ON")
|
2019-04-14 21:10:08 +02:00
|
|
|
++ (optional withKeePassKeeShare "-DWITH_XC_KEESHARE=ON")
|
|
|
|
++ (optional withKeePassKeeShareSecure "-DWITH_XC_KEESHARE_SECURE=ON")
|
2018-03-04 06:23:33 +01:00
|
|
|
++ (optional withKeePassNetworking "-DWITH_XC_NETWORKING=ON")
|
|
|
|
++ (optional withKeePassSSHAgent "-DWITH_XC_SSHAGENT=ON");
|
2017-06-25 10:36:06 +02:00
|
|
|
|
2017-06-26 08:22:05 +02:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
2019-04-11 09:36:21 +02:00
|
|
|
export QT_QPA_PLATFORM=offscreen
|
2019-04-11 07:56:35 +02:00
|
|
|
make test ARGS+="-E testgui --output-on-failure"
|
2017-06-26 08:22:05 +02:00
|
|
|
'';
|
2017-02-21 23:22:08 +01:00
|
|
|
|
2019-07-05 17:42:08 +02:00
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook qttools ];
|
2017-12-20 06:46:54 +01:00
|
|
|
|
2018-03-04 06:23:33 +01:00
|
|
|
buildInputs = [
|
|
|
|
curl
|
|
|
|
glibcLocales
|
|
|
|
libXi
|
|
|
|
libXtst
|
|
|
|
libargon2
|
|
|
|
libgcrypt
|
|
|
|
libgpgerror
|
|
|
|
libmicrohttpd
|
|
|
|
libsodium
|
|
|
|
libyubikey
|
2019-04-14 21:10:08 +02:00
|
|
|
pkg-config
|
|
|
|
qrencode
|
2018-03-04 06:23:33 +01:00
|
|
|
qtbase
|
2019-04-11 05:13:23 +02:00
|
|
|
qtsvg
|
2019-04-14 21:10:08 +02:00
|
|
|
qtx11extras
|
2018-03-04 06:23:33 +01:00
|
|
|
yubikey-personalization
|
|
|
|
zlib
|
2019-04-14 21:10:08 +02:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optional withKeePassKeeShareSecure quazip
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin qtmacextras;
|
2017-12-20 06:46:54 +01:00
|
|
|
|
2019-07-05 17:42:08 +02:00
|
|
|
preFixup = optionalString stdenv.isDarwin ''
|
2017-12-20 06:46:54 +01:00
|
|
|
# Make it work without Qt in PATH.
|
2019-07-05 17:42:08 +02:00
|
|
|
wrapQtApp $out/Applications/KeePassXC.app/Contents/MacOS/KeePassXC
|
2017-12-20 06:46:54 +01:00
|
|
|
'';
|
2016-08-29 02:02:19 +02:00
|
|
|
|
|
|
|
meta = {
|
2017-12-20 06:46:54 +01:00
|
|
|
description = "Password manager to store your passwords safely and auto-type them into your everyday websites and applications";
|
2019-04-14 21:10:08 +02:00
|
|
|
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, and browser integration with the KeePassXC Browser Extension (https://github.com/keepassxreboot/keepassxc-browser).";
|
2017-12-20 06:46:54 +01:00
|
|
|
homepage = https://keepassxc.org/;
|
|
|
|
license = licenses.gpl2;
|
2019-07-18 09:11:25 +02:00
|
|
|
maintainers = with maintainers; [ jonafato ];
|
2017-12-20 06:46:54 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-08-29 02:02:19 +02:00
|
|
|
};
|
|
|
|
}
|