python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / keepassx / default.nix
blob0fad28d94d3f335b2e36c601263746c21a26a7c0
1 { lib, stdenv, fetchurl, bzip2, qt4, qmake4Hook, libX11, xorgproto, libXtst }:
3 stdenv.mkDerivation rec {
4   pname = "keepassx";
5   version = "0.4.4";
7   src = fetchurl {
8     url = "https://www.keepassx.org/releases/${version}/${pname}-${version}.tar.gz";
9     sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry";
10   };
12   patches = [ ./random.patch ];
14   buildInputs = [ bzip2 qt4 libX11 xorgproto libXtst ];
16   nativeBuildInputs = [ qmake4Hook ];
18   meta = {
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;
24   };