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

27 lines
724 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, gnupg, gtk2
2016-10-19 18:15:14 +00:00
, libxml2, intltool
}:
2021-01-15 09:19:50 +00:00
with lib;
2016-10-19 18:15:14 +00:00
stdenv.mkDerivation rec {
pname = "fpm2";
2016-10-19 18:15:14 +00:00
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";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gnupg gtk2 libxml2 intltool ];
2016-10-19 18:15:14 +00:00
meta = {
description = "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 ];
};
}