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