1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #19719 from hce/add-fpm2

fpm2: init at 0.79
This commit is contained in:
Tim Steinbach 2016-10-20 11:10:27 -04:00 committed by GitHub
commit ed9153c521
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.linux;
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 { };
}