Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

67 lines
1.3 KiB
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
lib,
fetchFromGitLab,
python3,
wrapGAppsHook3,
gobject-introspection,
gtk3,
glib,
gst_all_1,
}:
python3.pkgs.buildPythonApplication rec {
pname = "gnome-keysign";
version = "1.3.0";
format = "setuptools";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "gnome-keysign";
rev = version;
hash = "sha256-k77z8Yligzs4rHpPckRGcC5qnCHynHQRjdDkzxwt1Ss=";
};
nativeBuildInputs = [
wrapGAppsHook3
gobject-introspection
]
++ (with python3.pkgs; [
babel
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;
meta = with lib; {
description = "GTK/GNOME application to use GnuPG for signing other peoples keys";
homepage = "https://gitlab.gnome.org/GNOME/gnome-keysign";
license = licenses.gpl3Plus;
teams = [ teams.gnome ];
platforms = platforms.linux;
};
}