i would upload the keepassx expression into svn if anyone is willing to review it. for comments please give me feedback to qknight on #nixos on freenode. and yes i got svn access so i can update it later.

thanks in advance
{stdenv, fetchurl, bzip2, qt4, libX11, xextproto, libXtst}:

stdenv.mkDerivation rec {
  name = "keepassx-0.4.3";

  src = fetchurl {
    url = "http://downloads.sourceforge.net/keepassx/keepassx-0.4.3.tar.gz";;
    sha256 = "cd901a0611ce57e62cf6df7eeeb1b690b5232302bdad8626994eb54adcfa1e85";
  };

  configurePhase = ''
    qmake PREFIX=$out
  '';

  buildInputs = [ bzip2 qt4 libX11 xextproto libXtst ];

  meta = {
    description ="Qt password manager compatible with its Win32 and Pocket PC 
versions."
    homepage = "http://http://www.keepassx.org/";;
    license = "GPL-2";
    maintainers = with stdenv.lib.maintainers; [qknight];
    platforms = with stdenv.lib.platforms; linux;
  };
}

_______________________________________________
nix-dev mailing list
[email protected]
https://mail.cs.uu.nl/mailman/listinfo/nix-dev

Reply via email to