Add keepassx 2.0alpha5, contributed by Thomas Tuegel.
This commit is contained in:
parent
e361d27eeb
commit
3f56d9f4b4
19
pkgs/applications/misc/keepassx/2.0.nix
Normal file
19
pkgs/applications/misc/keepassx/2.0.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl, cmake, libgcrypt, qt4, xlibs, ... }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "keepassx-2.0alpha5";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/keepassx/keepassx/archive/2.0-alpha5.tar.gz";
|
||||
sha256 = "1vxj306zhrr38mvsy3vpjlg6d0xwlcvsi3l69nhhwzkccsc4smfm";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake libgcrypt qt4 xlibs.libXtst ];
|
||||
|
||||
meta = {
|
||||
description = "Qt password manager compatible with its Win32 and Pocket PC versions";
|
||||
homepage = http://www.keepassx.org/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -7745,6 +7745,7 @@ let
|
||||
evopedia = callPackage ../applications/misc/evopedia { };
|
||||
|
||||
keepassx = callPackage ../applications/misc/keepassx { };
|
||||
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
|
||||
|
||||
inherit (gnome3) evince;
|
||||
evolution_data_server = gnome3.evolution_data_server;
|
||||
|
Loading…
Reference in New Issue
Block a user