1 { lib, stdenv, fetchurl, bzip2, qt4, qmake4Hook, libX11, xorgproto, libXtst }:
3 stdenv.mkDerivation rec {
8 url = "https://www.keepassx.org/releases/${version}/${pname}-${version}.tar.gz";
9 sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry";
12 patches = [ ./random.patch ];
14 buildInputs = [ bzip2 qt4 libX11 xorgproto libXtst ];
16 nativeBuildInputs = [ qmake4Hook ];
19 description = "Qt password manager compatible with its Win32 and Pocket PC versions";
20 homepage = "https://www.keepassx.org/";
21 license = lib.licenses.gpl2;
22 maintainers = with lib.maintainers; [ qknight ];
23 platforms = with lib.platforms; linux;