2021-01-15 06:42:41 +01:00
|
|
|
{ lib, stdenv, fetchurl, bzip2, qt4, qmake4Hook, libX11, xorgproto, libXtst }:
|
2011-06-09 09:48:54 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "keepassx";
|
2015-12-20 22:11:06 +01:00
|
|
|
version = "0.4.4";
|
2011-06-09 09:48:54 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://www.keepassx.org/releases/${version}/${pname}-${version}.tar.gz";
|
2015-12-20 22:11:06 +01:00
|
|
|
sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry";
|
2011-06-09 09:48:54 +02:00
|
|
|
};
|
|
|
|
|
2014-01-21 22:20:21 +01:00
|
|
|
patches = [ ./random.patch ];
|
|
|
|
|
2018-12-31 04:40:47 +01:00
|
|
|
buildInputs = [ bzip2 qt4 libX11 xorgproto libXtst ];
|
2011-06-09 09:48:54 +02:00
|
|
|
|
2016-04-17 01:33:06 +02:00
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
|
2011-06-09 09:48:54 +02:00
|
|
|
meta = {
|
|
|
|
description = "Qt password manager compatible with its Win32 and Pocket PC versions";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.keepassx.org/";
|
2021-01-15 06:42:41 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ qknight ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2011-06-09 09:48:54 +02:00
|
|
|
};
|
|
|
|
}
|