forked from mirrors/nixpkgs
onioncircuits: init at 0.5
This commit is contained in:
parent
748d5709b5
commit
2bb5e5e748
29
pkgs/tools/security/onioncircuits/default.nix
Normal file
29
pkgs/tools/security/onioncircuits/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchgit, pythonPackages, intltool, gtk3, gobjectIntrospection, defaultIconTheme }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "onioncircuits-${version}";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git-tails.immerda.ch/onioncircuits/";
|
||||
rev = version;
|
||||
sha256 = "13mqif9b9iajpkrl9ijspdnvy82kxhprxd5mw3njk68rcn4z2pcm";
|
||||
};
|
||||
|
||||
buildInputs = [ intltool gtk3 gobjectIntrospection ];
|
||||
propagatedBuildInputs = with pythonPackages; [ stem distutils_extra pygobject3 ];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram "$out/bin/onioncircuits" \
|
||||
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
||||
--prefix XDG_DATA_DIRS : "$out/share:${defaultIconTheme}/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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -3818,6 +3818,10 @@ with pkgs;
|
|||
|
||||
ola = callPackage ../applications/misc/ola { };
|
||||
|
||||
onioncircuits = callPackage ../tools/security/onioncircuits {
|
||||
inherit (gnome3) defaultIconTheme;
|
||||
};
|
||||
|
||||
opencc = callPackage ../tools/text/opencc { };
|
||||
|
||||
opencl-info = callPackage ../tools/system/opencl-info { };
|
||||
|
|
Loading…
Reference in a new issue