3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/keepassx/community.nix

24 lines
876 B
Nix
Raw Normal View History

2016-08-29 01:02:19 +01:00
{ stdenv, fetchFromGitHub, cmake, libgcrypt, qt5, zlib, libmicrohttpd, libXtst }:
stdenv.mkDerivation rec {
name = "keepassx-community-${version}";
version = "2.1.0";
2016-08-29 01:02:19 +01:00
src = fetchFromGitHub {
owner = "keepassxreboot";
repo = "keepassxc";
rev = "${version}";
sha256 = "0qwmi9f8ik3vkwl1kx7g3079h5ia4wl87y42nr5dal3ic1jc941p";
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.";
homepage = https://github.com/keepassxreboot/keepassxc;
2016-08-29 01:02:19 +01:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ s1lvester jonafato ];
2016-08-29 01:02:19 +01:00
platforms = with stdenv.lib.platforms; linux;
};
}