nixpkgs/pkgs/tools/security/fpm2/default.nix

27 lines
741 B
Nix
Raw Normal View History

2016-10-19 18:15:14 +00:00
{ stdenv, fetchurl, pkgconfig, gnupg, gtk2
, libxml2, intltool
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "fpm2-${version}";
version = "0.79";
src = fetchurl {
url = "https://als.regnet.cz/fpm2/download/fpm2-${version}.tar.bz2";
2016-10-19 18:15:14 +00:00
sha256 = "d55e9ce6be38a44fc1053d82db2d117cf3991a51898bd86d7913bae769f04da7";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gnupg gtk2 libxml2 intltool ];
2016-10-19 18:15:14 +00:00
meta = {
description = "FPM2 is GTK2 port from Figaro's Password Manager originally developed by John Conneely, with some new enhancements.";
homepage = https://als.regnet.cz/fpm2/;
2016-10-19 18:15:14 +00:00
license = licenses.gpl2;
2016-10-20 14:35:58 +00:00
platforms = platforms.linux;
2016-10-19 18:15:14 +00:00
maintainers = with maintainers; [ hce ];
};
}