2021-02-05 17:12:51 +00:00
|
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, fetchFromGitLab
|
|
|
|
|
, python3
|
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, gtk3
|
|
|
|
|
, glib
|
|
|
|
|
, gst_all_1
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
|
pname = "gnome-keysign";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
version = "1.3.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
|
owner = "GNOME";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
repo = "gnome-keysign";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
rev = version;
|
2023-07-15 17:15:38 +00:00
|
|
|
|
hash = "sha256-k77z8Yligzs4rHpPckRGcC5qnCHynHQRjdDkzxwt1Ss=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
gobject-introspection
|
|
|
|
|
] ++ (with python3.pkgs; [
|
2022-05-18 14:49:53 +00:00
|
|
|
|
babel
|
2020-04-24 23:36:52 +00:00
|
|
|
|
babelgladeextractor
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
# TODO: add avahi support
|
|
|
|
|
gtk3
|
|
|
|
|
glib
|
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
|
(gst_all_1.gst-plugins-good.override { gtkSupport = true; })
|
|
|
|
|
(gst_all_1.gst-plugins-bad.override { enableZbar = true; }) # for zbar plug-in
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
|
dbus-python
|
|
|
|
|
future
|
|
|
|
|
gpgme
|
|
|
|
|
magic-wormhole
|
|
|
|
|
pygobject3
|
|
|
|
|
pybluez
|
|
|
|
|
qrcode
|
|
|
|
|
requests
|
|
|
|
|
twisted
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# bunch of linting
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "GTK/GNOME application to use GnuPG for signing other peoples’ keys";
|
|
|
|
|
homepage = "https://wiki.gnome.org/Apps/Keysign";
|
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
maintainers = teams.gnome.members;
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|