[Nix-dev] packaged keepassx; awaiting review

Joachim Schiele js at lastlog.de
Wed Jun 8 11:24:17 CEST 2011


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
-------------- next part --------------
{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;
  };
}



More information about the nix-dev mailing list