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