mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
26 lines
739 B
Nix
26 lines
739 B
Nix
{ lib, stdenv, fetchurl, bzip2, qt4, qmake4Hook, libX11, xorgproto, libXtst }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "keepassx";
|
|
version = "0.4.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.keepassx.org/releases/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry";
|
|
};
|
|
|
|
patches = [ ./random.patch ];
|
|
|
|
buildInputs = [ bzip2 qt4 libX11 xorgproto libXtst ];
|
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
meta = {
|
|
description = "Qt password manager compatible with its Win32 and Pocket PC versions";
|
|
homepage = "https://www.keepassx.org/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ qknight ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|