nixpkgs/pkgs/tools/security/onioncircuits/default.nix
Jan Tojnar eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00

60 lines
1.3 KiB
Nix

{ stdenv
, lib
, fetchFromGitLab
, fetchpatch
, gobject-introspection
, intltool
, python3
, wrapGAppsHook3
}:
python3.pkgs.buildPythonApplication rec {
pname = "onioncircuits";
version = "0.7";
src = fetchFromGitLab {
domain = "gitlab.tails.boum.org";
owner = "tails";
repo = "onioncircuits";
rev = version;
sha256 = "sha256-O4tSbKBTmve4u8bXVg128RLyuxvTbU224JV8tQ+aDAQ=";
};
nativeBuildInputs = [
gobject-introspection
intltool
wrapGAppsHook3
python3.pkgs.distutils-extra
];
propagatedBuildInputs = with python3.pkgs; [
pygobject3
stem
];
patches = [
# Fix https://gitlab.tails.boum.org/tails/onioncircuits/-/merge_requests/4
(fetchpatch {
name = "fix-setuptool-package-discovery.patch";
url = "https://gitlab.tails.boum.org/tails/onioncircuits/-/commit/4c620c77f36f540fa27041fcbdeaf05c9f57826c.patch";
sha256 = "sha256-WXqyDa2meRMMHkHLO5Xl7x43KUGtlsai+eOVzUGUPpo=";
})
];
postInstall = ''
mkdir -p $out/etc/apparmor.d
cp apparmor/usr.bin.onioncircuits $out/etc/apparmor.d
'';
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://tails.boum.org";
description = "GTK application to display Tor circuits and streams";
mainProgram = "onioncircuits";
license = licenses.gpl3;
maintainers = with maintainers; [ milran ];
};
}