torbutton: package version 1.6.1
This commit is contained in:
parent
15637cf207
commit
3065a7686b
29
pkgs/tools/security/torbutton/default.nix
Normal file
29
pkgs/tools/security/torbutton/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ 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 = "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;
|
||||||
|
};
|
||||||
|
}
|
@ -1788,6 +1788,8 @@ let
|
|||||||
|
|
||||||
tor = callPackage ../tools/security/tor { };
|
tor = callPackage ../tools/security/tor { };
|
||||||
|
|
||||||
|
torbutton = callPackage ../tools/security/torbutton { };
|
||||||
|
|
||||||
torsocks = callPackage ../tools/security/tor/torsocks.nix { };
|
torsocks = callPackage ../tools/security/tor/torsocks.nix { };
|
||||||
|
|
||||||
trickle = callPackage ../tools/networking/trickle {};
|
trickle = callPackage ../tools/networking/trickle {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user