From 15bc80f3b9c7f3626735755927748bf6ba6c1ce5 Mon Sep 17 00:00:00 2001 From: Drakonis Date: Wed, 1 Feb 2017 21:21:34 -0500 Subject: keepassx-community: init at 2.1.0 - deprecating keepassx-reboot (was at 2.0.3) --- pkgs/applications/misc/keepassx/community.nix | 23 +++++++++++++++++++++++ pkgs/applications/misc/keepassx/reboot.nix | 23 ----------------------- 2 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 pkgs/applications/misc/keepassx/community.nix delete mode 100644 pkgs/applications/misc/keepassx/reboot.nix (limited to 'pkgs/applications/misc/keepassx') diff --git a/pkgs/applications/misc/keepassx/community.nix b/pkgs/applications/misc/keepassx/community.nix new file mode 100644 index 000000000000..075de4dcb652 --- /dev/null +++ b/pkgs/applications/misc/keepassx/community.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, cmake, libgcrypt, qt5, zlib, libmicrohttpd, libXtst }: + +stdenv.mkDerivation rec { + name = "keepassx-community-${version}"; + version = "2.1.0"; + + src = fetchFromGitHub { + owner = "keepassxreboot"; + repo = "keepassxc"; + rev = "${version}"; + sha256 = "0qwmi9f8ik3vkwl1kx7g3079h5ia4wl87y42nr5dal3ic1jc941p"; + }; + + 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; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ s1lvester jonafato ]; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/applications/misc/keepassx/reboot.nix b/pkgs/applications/misc/keepassx/reboot.nix deleted file mode 100644 index f6ed251601a9..000000000000 --- a/pkgs/applications/misc/keepassx/reboot.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ 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; - }; -} -- cgit 1.4.1