nixpkgs/pkgs/tools/security/gnome-keysign/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
2019-03-06 23:10:38 +00:00
, fetchFromGitLab
, python3
, wrapGAppsHook
, gobject-introspection
, gtk3
, glib
, gst_all_1
}:
python3.pkgs.buildPythonApplication rec {
pname = "gnome-keysign";
version = "1.3.0";
2019-03-06 23:10:38 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "gnome-keysign";
2019-03-06 23:10:38 +00:00
rev = version;
hash = "sha256-k77z8Yligzs4rHpPckRGcC5qnCHynHQRjdDkzxwt1Ss=";
2019-03-06 23:10:38 +00:00
};
nativeBuildInputs = [
wrapGAppsHook
gobject-introspection
] ++ (with python3.pkgs; [
babel
babelgladeextractor
2019-03-06 23:10:38 +00:00
]);
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
2019-03-06 23:10:38 +00:00
];
propagatedBuildInputs = with python3.pkgs; [
dbus-python
future
gpgme
magic-wormhole
pygobject3
pybluez
qrcode
requests
twisted
];
# bunch of linting
doCheck = false;
meta = with lib; {
2019-03-06 23:10:38 +00:00
description = "GTK/GNOME application to use GnuPG for signing other peoples keys";
homepage = "https://wiki.gnome.org/Apps/Keysign";
2019-03-06 23:10:38 +00:00
license = licenses.gpl3Plus;
maintainers = teams.gnome.members;
2019-03-06 23:10:38 +00:00
platforms = platforms.linux;
};
}