fpm2: init at 0.79
This commit is contained in:
parent
e5db8068fa
commit
510111a1c3
25
pkgs/tools/security/fpm2/default.nix
Normal file
25
pkgs/tools/security/fpm2/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -17376,4 +17376,6 @@ in
|
||||
xulrunner = firefox-unwrapped;
|
||||
|
||||
nitrokey-app = callPackage ../tools/security/nitrokey-app { };
|
||||
|
||||
fpm2 = callPackage ../tools/security/fpm2 { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user