2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gnupg, gtk2
|
2020-04-24 23:36:52 +00:00
|
|
|
, libxml2, intltool
|
|
|
|
}:
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
with lib;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fpm2";
|
|
|
|
version = "0.79";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://als.regnet.cz/fpm2/download/fpm2-${version}.tar.bz2";
|
|
|
|
sha256 = "d55e9ce6be38a44fc1053d82db2d117cf3991a51898bd86d7913bae769f04da7";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ gnupg gtk2 libxml2 intltool ];
|
|
|
|
|
|
|
|
meta = {
|
2020-11-03 02:18:15 +00:00
|
|
|
description = "GTK2 port from Figaro's Password Manager originally developed by John Conneely, with some new enhancements";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://als.regnet.cz/fpm2/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ hce ];
|
|
|
|
};
|
|
|
|
}
|