mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
664 B
Nix
22 lines
664 B
Nix
{ stdenv, fetchurl, cmake, libgcrypt, qt4, xorg, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "keepassx2";
|
|
version = "2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.keepassx.org/releases/${version}/keepassx-${version}.tar.gz";
|
|
sha256 = "1ia7cqx9ias38mnffsl7da7g1f66bcbjsi23k49sln0c6spb9zr3";
|
|
};
|
|
|
|
buildInputs = [ cmake libgcrypt qt4 xorg.libXtst ];
|
|
|
|
meta = {
|
|
description = "Qt password manager compatible with its Win32 and Pocket PC versions";
|
|
homepage = "https://www.keepassx.org/";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ qknight ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|