aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/onioncircuits/default.nix
blob: 92888a8de2a156ea2a9389b49e3b7f159bf530ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchgit, python3, intltool, gtk3, gobject-introspection, gnome3 }:

python3.pkgs.buildPythonApplication rec {
  pname = "onioncircuits";
  version = "0.5";

  src = fetchgit {
    url = "https://git-tails.immerda.ch/onioncircuits/";
    rev = version;
    sha256 = "13mqif9b9iajpkrl9ijspdnvy82kxhprxd5mw3njk68rcn4z2pcm";
  };

  nativeBuildInputs = [ intltool ];
  buildInputs = [ intltool gtk3 gobject-introspection ];
  propagatedBuildInputs =  with python3.pkgs; [ stem distutils_extra pygobject3 ];

  postFixup = ''
    wrapProgram "$out/bin/onioncircuits" \
      --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
      --prefix XDG_DATA_DIRS : "$out/share:${gnome3.adwaita-icon-theme}/share"
  '';

  meta = with stdenv.lib; {
    homepage = "https://tails.boum.org";
    description = "GTK application to display Tor circuits and streams";
    license = licenses.gpl3;
    maintainers = [ maintainers.phreedom ];
  };
}