2017-12-20 05:46:54 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, makeWrapper, qttools
|
2018-03-04 05:23:33 +00:00
|
|
|
|
|
|
|
, curl
|
|
|
|
, libargon2
|
|
|
|
, libgcrypt
|
|
|
|
, libsodium
|
|
|
|
, zlib
|
|
|
|
, libmicrohttpd
|
|
|
|
, libXtst
|
|
|
|
, qtbase
|
|
|
|
, libgpgerror
|
|
|
|
, glibcLocales
|
|
|
|
, libyubikey
|
|
|
|
, yubikey-personalization
|
|
|
|
, libXi
|
|
|
|
, qtx11extras
|
|
|
|
|
|
|
|
, withKeePassBrowser ? true
|
|
|
|
, withKeePassHTTP ? false
|
|
|
|
, withKeePassNetworking ? false
|
|
|
|
, withKeePassSSHAgent ? false
|
2017-02-21 22:22:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-08-29 01:02:19 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-07 15:54:01 +00:00
|
|
|
name = "keepassxc-${version}";
|
2018-03-04 05:23:33 +00:00
|
|
|
version = "2.3.0";
|
2016-08-29 01:02:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-10-18 04:43:11 +01:00
|
|
|
owner = "keepassxreboot";
|
2017-02-02 02:21:34 +00:00
|
|
|
repo = "keepassxc";
|
|
|
|
rev = "${version}";
|
2018-03-04 05:23:33 +00:00
|
|
|
sha256 = "1zch1qbqgphhp2p2kvjlah8s337162m69yf4y00kcnfb3539ii5f";
|
2016-08-29 01:02:19 +01:00
|
|
|
};
|
|
|
|
|
2018-03-04 05:23:33 +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-18 00:09:50 +01:00
|
|
|
"-DWITH_XC_AUTOTYPE=ON"
|
|
|
|
"-DWITH_XC_YUBIKEY=ON"
|
2018-03-04 05:23:33 +00:00
|
|
|
]
|
|
|
|
++ (optional withKeePassBrowser "-DWITH_XC_BROWSER=ON")
|
|
|
|
++ (optional withKeePassHTTP "-DWITH_XC_HTTP=ON")
|
|
|
|
++ (optional withKeePassNetworking "-DWITH_XC_NETWORKING=ON")
|
|
|
|
++ (optional withKeePassSSHAgent "-DWITH_XC_SSHAGENT=ON");
|
2017-06-25 09:36:06 +01:00
|
|
|
|
2017-06-26 07:22:05 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
make test ARGS+="-E testgui --output-on-failure"
|
|
|
|
'';
|
2017-02-21 22:22:08 +00:00
|
|
|
|
2017-12-20 05:46:54 +00:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper qttools ];
|
|
|
|
|
2018-03-04 05:23:33 +00:00
|
|
|
buildInputs = [
|
|
|
|
curl
|
|
|
|
glibcLocales
|
|
|
|
libXi
|
|
|
|
libXtst
|
|
|
|
libargon2
|
|
|
|
libgcrypt
|
|
|
|
libgpgerror
|
|
|
|
libmicrohttpd
|
|
|
|
libsodium
|
|
|
|
libyubikey
|
|
|
|
qtbase
|
|
|
|
qtx11extras
|
|
|
|
yubikey-personalization
|
|
|
|
zlib
|
|
|
|
];
|
2017-12-20 05:46:54 +00: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-29 01:02:19 +01: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";
|
|
|
|
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 and via CLI. Includes optional http-interface to allow browser-integration with plugins like PassIFox (https://github.com/pfn/passifox).";
|
|
|
|
homepage = https://keepassxc.org/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ s1lvester jonafato ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-08-29 01:02:19 +01:00
|
|
|
};
|
|
|
|
}
|