Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c7f19d76268a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 98d958981921
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 3, 2019

  1. gnome-keysign: init at 1.0.1

    jtojnar committed Sep 3, 2019
    Copy the full SHA
    ad72ce9 View commit details

Commits on Sep 8, 2019

  1. gnome-keysign: init at 1.0.1 (#57000)

    gnome-keysign: init at 1.0.1
    jtojnar authored Sep 8, 2019
    Copy the full SHA
    98d9589 View commit details
Showing with 75 additions and 0 deletions.
  1. +73 −0 pkgs/tools/security/gnome-keysign/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
73 changes: 73 additions & 0 deletions pkgs/tools/security/gnome-keysign/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{ stdenv
, fetchFromGitLab
, python3
, wrapGAppsHook
, gobject-introspection
, gtk3
, glib
, gnome3
, gst_all_1
}:

python3.pkgs.buildPythonApplication rec {
pname = "gnome-keysign";
version = "1.0.1";

src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = pname;
rev = version;
sha256 = "0iy70dskd7wly37lpb2ypd9phhyml5j3c7rzajii4f2s7zgb3abg";
};

nativeBuildInputs = [
wrapGAppsHook
gobject-introspection
] ++ (with python3.pkgs; [
Babel
lxml
]);

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 # for zbar plug-in
];

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";
homepage = https://wiki.gnome.org/Apps/Keysign;
license = licenses.gpl3Plus;
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -3429,6 +3429,8 @@ in

gnome-builder = callPackage ../applications/editors/gnome-builder { };

gnome-keysign = callPackage ../tools/security/gnome-keysign { };

gnome-podcasts = callPackage ../applications/audio/gnome-podcasts { };

gnome-photos = callPackage ../applications/graphics/gnome-photos {