2019-03-06 23:10:38 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, fetchFromGitLab
|
2019-11-19 00:56:07 +00:00
|
|
|
|
, fetchpatch
|
2019-03-06 23:10:38 +00:00
|
|
|
|
, python3
|
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, gtk3
|
|
|
|
|
, glib
|
|
|
|
|
, gnome3
|
|
|
|
|
, gst_all_1
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
|
pname = "gnome-keysign";
|
2019-11-19 00:56:07 +00:00
|
|
|
|
version = "1.2.0";
|
2019-03-06 23:10:38 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
|
owner = "GNOME";
|
|
|
|
|
repo = pname;
|
|
|
|
|
rev = version;
|
2019-11-19 00:56:07 +00:00
|
|
|
|
sha256 = "1sjphi1lsivg9jmc8khbcqa9w6608pkrccz4nz3rlcc54hn0k0sj";
|
2019-03-06 23:10:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-11-19 00:56:07 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# fix build failure due to missing import
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-keysign/commit/216c3677e68960afc517edc00529323e85909323.patch";
|
|
|
|
|
sha256 = "1w410gvcridbq26sry7fxn49v59ss2lc0w5ab7csva8rzs1nc990";
|
|
|
|
|
})
|
2019-11-27 21:32:47 +00:00
|
|
|
|
|
|
|
|
|
# stop requiring lxml (no longer used)
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnome-keysign/merge_requests/23
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-keysign/commit/ffc6f40584d7564951e1c8b6d18d4f8a6a3fa09d.patch";
|
|
|
|
|
sha256 = "1hs6mmhi2f21kvy26llzvp37yf0i0dr69d18r641139nr6qg6kwy";
|
|
|
|
|
includes = [ "setup.py" ];
|
|
|
|
|
})
|
2019-11-19 00:56:07 +00:00
|
|
|
|
];
|
|
|
|
|
|
2019-03-06 23:10:38 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
gobject-introspection
|
|
|
|
|
] ++ (with python3.pkgs; [
|
|
|
|
|
Babel
|
2019-11-19 00:56:07 +00:00
|
|
|
|
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; })
|
2020-04-10 23:58:35 +00:00
|
|
|
|
(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
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
|
packageName = pname;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/56943
|
|
|
|
|
strictDeps = false;
|
|
|
|
|
|
|
|
|
|
# bunch of linting
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "GTK/GNOME application to use GnuPG for signing other peoples’ keys";
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "https://wiki.gnome.org/Apps/Keysign";
|
2019-03-06 23:10:38 +00:00
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-01 12:40:51 +00:00
|
|
|
|
maintainers = teams.gnome.members;
|
2019-03-06 23:10:38 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|