083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
35 lines
896 B
Nix
35 lines
896 B
Nix
{ 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;
|
|
};
|
|
}
|