summary refs log tree commit diff
path: root/pkgs/applications/misc/keepassx
diff options
context:
space:
mode:
authorJon Banafato <jon@jonafato.com>2016-10-17 23:43:11 -0400
committerJon Banafato <jon@jonafato.com>2016-10-18 20:59:24 -0400
commit0bc186510af1e47c79a6334f967ee2c0effa75de (patch)
tree04746885417e8ed1416235072b50a6d9482c2041 /pkgs/applications/misc/keepassx
parentba42683e9afd8f3195d2c9659bb5f9f368ea0560 (diff)
downloadnixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.tar
nixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.tar.gz
nixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.tar.bz2
nixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.tar.lz
nixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.tar.xz
nixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.tar.zst
nixpkgs-0bc186510af1e47c79a6334f967ee2c0effa75de.zip
Rename keepassx2-http to keepassx-reboot
The `keepassx2-http` fork has been moved to a new organization and
renamed to `keepassx-reboot`. For more details on the change, see the
discussions in GitHub issues [1][2].

Included changes:
- Rename the `keepassx2-http` package to `keepassx-reboot`
- Fetch source from correct (moved) GitHub repository
- Update the version to the latest release
- Change the `homepage`, as these projects are likely to diverge over
  time
- Add `keepassx2-http` to `aliases.nix

[1] https://github.com/keepassx/keepassx/pull/111#issuecomment-250639109
[2] https://github.com/keepassxreboot/keepassx/issues/40
Diffstat (limited to 'pkgs/applications/misc/keepassx')
-rw-r--r--pkgs/applications/misc/keepassx/reboot.nix (renamed from pkgs/applications/misc/keepassx/2.0-http.nix)16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/misc/keepassx/2.0-http.nix b/pkgs/applications/misc/keepassx/reboot.nix
index b3a84d36b1e..f6ed251601a 100644
--- a/pkgs/applications/misc/keepassx/2.0-http.nix
+++ b/pkgs/applications/misc/keepassx/reboot.nix
@@ -1,23 +1,23 @@
 { stdenv, fetchFromGitHub, cmake, libgcrypt, qt5, zlib, libmicrohttpd, libXtst }:
 
 stdenv.mkDerivation rec {
-  name = "keepassx2-http-unstable-${version}";
-  version = "2016-05-27";
+  name = "keepassx-reboot-${version}";
+  version = "2.0.3";
 
   src = fetchFromGitHub {
-    owner = "droidmonkey";
-    repo = "keepassx_http";
-    rev = "bb2e1ee8da3a3245c3ca58978a979dd6b5c2472a";
-    sha256 = "1rlbjs0i1kbrkksliisnykhki8f15g09xm3fwqlgcfc2czwbv5sv";
+    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 = http://www.keepassx.org/;
+    homepage = https://github.com/keepassxreboot/keepassx;
     license = stdenv.lib.licenses.gpl2;
-    maintainers = with stdenv.lib.maintainers; [ s1lvester ];
+    maintainers = with stdenv.lib.maintainers; [ s1lvester jonafato ];
     platforms = with stdenv.lib.platforms; linux;
   };
 }