fpm2: init at 0.79

This commit is contained in:
Hans-Christian Esperer 2016-10-19 20:15:14 +02:00
parent e5db8068fa
commit 510111a1c3
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, gnupg, gtk2
, libxml2, intltool
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "fpm2-${version}";
version = "0.79";
src = fetchurl {
url = "http://als.regnet.cz/fpm2/download/fpm2-${version}.tar.bz2";
sha256 = "d55e9ce6be38a44fc1053d82db2d117cf3991a51898bd86d7913bae769f04da7";
};
buildInputs = [ pkgconfig gnupg gtk2 libxml2 intltool ];
meta = {
description = "FPM2 is GTK2 port from Figaro's Password Manager originally developed by John Conneely, with some new enhancements.";
homepage = http://als.regnet.cz/fpm2/;
license = licenses.gpl2;
platforms = platforms.all;
maintainers = with maintainers; [ hce ];
};
}

View File

@ -17376,4 +17376,6 @@ in
xulrunner = firefox-unwrapped;
nitrokey-app = callPackage ../tools/security/nitrokey-app { };
fpm2 = callPackage ../tools/security/fpm2 { };
}