- added myself as maintainer
- added a new package: keepassx (which was reviewed on the nix-dev ml) svn path=/nixpkgs/trunk/; revision=27401
This commit is contained in:
parent
74a7f5122e
commit
d27a2ef6cf
24
pkgs/applications/misc/keepassx/default.nix
Normal file
24
pkgs/applications/misc/keepassx/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, bzip2, qt4, libX11, xextproto, libXtst }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "keepassx-0.4.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/keepassx/${name}.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 = stdenv.lib.licenses.gpl2;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -18,6 +18,7 @@
|
|||||||
neznalek = "Vladimír Čunát <vcunat@gmail.com>";
|
neznalek = "Vladimír Čunát <vcunat@gmail.com>";
|
||||||
phreedom = "Evgeny Egorochkin <phreedom.stdin@gmail.com>";
|
phreedom = "Evgeny Egorochkin <phreedom.stdin@gmail.com>";
|
||||||
pierron = "Nicolas B. Pierron <nixos@nbp.name>";
|
pierron = "Nicolas B. Pierron <nixos@nbp.name>";
|
||||||
|
qknight = "Joachim Schiele <js@lastlog.de>";
|
||||||
raskin = "Michael Raskin <7c6f434c@mail.ru>";
|
raskin = "Michael Raskin <7c6f434c@mail.ru>";
|
||||||
roconnor = "Russell O'Connor <roconnor@theorem.ca>";
|
roconnor = "Russell O'Connor <roconnor@theorem.ca>";
|
||||||
sander = "Sander van der Burg <s.vanderburg@tudelft.nl>";
|
sander = "Sander van der Burg <s.vanderburg@tudelft.nl>";
|
||||||
|
@ -6146,6 +6146,8 @@ let
|
|||||||
|
|
||||||
evopedia = callPackage ../applications/misc/evopedia { };
|
evopedia = callPackage ../applications/misc/evopedia { };
|
||||||
|
|
||||||
|
keepassx = callPackage ../applications/misc/keepassx { };
|
||||||
|
|
||||||
# FIXME: Evince and other GNOME/GTK+ apps (e.g., Viking) provide
|
# FIXME: Evince and other GNOME/GTK+ apps (e.g., Viking) provide
|
||||||
# `share/icons/hicolor/icon-theme.cache'. Arbitrarily give this one a
|
# `share/icons/hicolor/icon-theme.cache'. Arbitrarily give this one a
|
||||||
# higher priority.
|
# higher priority.
|
||||||
|
Loading…
Reference in New Issue
Block a user