about summary refs log tree commit diff
path: root/pkgs/applications/misc/keepassx/reboot.nix
blob: f6ed251601a986c4fbd2a96f264d91ae905f1474 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, cmake, libgcrypt, qt5, zlib, libmicrohttpd, libXtst }:

stdenv.mkDerivation rec {
  name = "keepassx-reboot-${version}";
  version = "2.0.3";

  src = fetchFromGitHub {
    owner = "keepassxreboot";
    repo = "keepassx";
    rev = "${version}-http";
    sha256 = "0pj3mirhw87hk9nlls9hgfx08xrr8ln7d1fqi3fcm519qjr72lmv";
  };

  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.";
    homepage = https://github.com/keepassxreboot/keepassx;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ s1lvester jonafato ];
    platforms = with stdenv.lib.platforms; linux;
  };
}