File tree 1 file changed +9
-2
lines changed
pkgs/applications/networking/browsers/tor-browser-bundle-bin
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 87
87
88
88
srcs = {
89
89
"x86_64-linux" = fetchurl {
90
- url = "https://dist.torproject.org/torbrowser/${ version } /tor-browser-linux64-${ version } _${ lang } .tar.xz" ;
90
+ urls = [
91
+ "https://github.com/TheTorProject/gettorbrowser/releases/download/v${ version } /tor-browser-linux64-${ version } _${ lang } .tar.xz"
92
+ "https://dist.torproject.org/torbrowser/${ version } /tor-browser-linux64-${ version } _${ lang } .tar.xz"
93
+ ] ;
91
94
sha256 = "0jn98arczlgjigpmql1qg5b7izabv4zy4mji6vvcg3b8g1ma108r" ;
92
95
} ;
93
96
94
97
"i686-linux" = fetchurl {
95
- url = "https://dist.torproject.org/torbrowser/${ version } /tor-browser-linux32-${ version } _${ lang } .tar.xz" ;
98
+ urls = [
99
+ "https://github.com/TheTorProject/gettorbrowser/releases/download/v${ version } /tor-browser-linux32-${ version } _${ lang } .tar.xz"
100
+ "https://dist.torproject.org/torbrowser/${ version } /tor-browser-linux32-${ version } _${ lang } .tar.xz"
101
+ ] ;
96
102
sha256 = "0micxgkbys0py4bj6csbc8xz4gq0x5v2zirgi38krnm5x5riqj3w" ;
97
103
} ;
98
104
} ;
@@ -105,6 +111,7 @@ stdenv.mkDerivation rec {
105
111
src = srcs . "${ stdenv . system } " or ( throw "unsupported system: ${ stdenv . system } " ) ;
106
112
107
113
preferLocalBuild = true ;
114
+ allowSubstitutes = false ;
Has conversations. Original line has conversations. 108
115
109
116
desktopItem = makeDesktopItem {
110
117
name = "torbrowser" ;
You can’t perform that action at this time.