forked from mirrors/nixpkgs
torbutton: remove expression
Not updated for years. Also, using torbutton without the tor browser bundle is not recommended.
This commit is contained in:
parent
9ec677867f
commit
e6fbe412ec
|
@ -1,34 +0,0 @@
|
|||
{ stdenv, fetchgit, zip }:
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "torbutton-${version}.xpi";
|
||||
version = "1.6.1";
|
||||
|
||||
src = fetchgit {
|
||||
url = https://git.torproject.org/torbutton.git;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "0ypzrl8nhckrgh45rcwsjds1jnzz3w5nr09b926a4h3a5njammlv";
|
||||
};
|
||||
|
||||
buildInputs = [ zip ];
|
||||
|
||||
buildPhase = ''
|
||||
mkdir pkg
|
||||
./makexpi.sh
|
||||
'';
|
||||
|
||||
installPhase = "cat pkg/*.xpi > $out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.torproject.org/torbutton/;
|
||||
description = "Part of the Tor Browser Bundle";
|
||||
longDescription = ''
|
||||
The component in Tor Browser Bundle that takes care of application-level
|
||||
security and privacy concerns in Firefox. To keep you safe, Torbutton
|
||||
disables many types of active content.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.phreedom ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -3460,8 +3460,6 @@ in
|
|||
|
||||
tor-arm = callPackage ../tools/security/tor/tor-arm.nix { };
|
||||
|
||||
torbutton = callPackage ../tools/security/torbutton { };
|
||||
|
||||
torbrowser = callPackage ../tools/security/tor/torbrowser.nix {
|
||||
inherit (xorg) libXrender libX11 libXext libXt;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue