2016-08-29 01:02:19 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libgcrypt, qt5, zlib, libmicrohttpd, libXtst }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-10-18 04:43:11 +01:00
|
|
|
name = "keepassx-reboot-${version}";
|
|
|
|
version = "2.0.3";
|
2016-08-29 01:02:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-10-18 04:43:11 +01:00
|
|
|
owner = "keepassxreboot";
|
|
|
|
repo = "keepassx";
|
|
|
|
rev = "${version}-http";
|
|
|
|
sha256 = "0pj3mirhw87hk9nlls9hgfx08xrr8ln7d1fqi3fcm519qjr72lmv";
|
2016-08-29 01:02:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake libgcrypt zlib qt5.full libXtst libmicrohttpd ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Fork of the keepassX password-manager with additional http-interface to allow browser-integration an use with plugins such as PasslFox (https://github.com/pfn/passifox). See also keepassX2.";
|
2016-10-18 04:43:11 +01:00
|
|
|
homepage = https://github.com/keepassxreboot/keepassx;
|
2016-08-29 01:02:19 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-10-18 04:43:11 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ s1lvester jonafato ];
|
2016-08-29 01:02:19 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|