tor-browser: added maintainer @c4patino

(cherry picked from commit 187240e284)
This commit is contained in:
C4 Patino
2025-08-19 20:38:11 -05:00
committed by Masum Reza
parent 3ec0718b05
commit 9b25c330be

View File

@@ -353,28 +353,29 @@ lib.warnIf (useHardenedMalloc != null)
};
};
meta = with lib; {
meta = {
description = "Privacy-focused browser routing traffic through the Tor network";
mainProgram = "tor-browser";
homepage = "https://www.torproject.org/";
changelog = "https://gitweb.torproject.org/builders/tor-browser-build.git/plain/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt?h=maint-${version}";
platforms = attrNames sources;
maintainers = with maintainers; [
platforms = lib.attrNames sources;
maintainers = with lib.maintainers; [
c4patino
felschr
panicgh
joachifm
hax404
joachifm
panicgh
];
# MPL2.0+, GPL+, &c. While it's not entirely clear whether
# the compound is "libre" in a strict sense (some components place certain
# restrictions on redistribution), it's free enough for our purposes.
license = with licenses; [
license = with lib.licenses; [
mpl20
lgpl21Plus
lgpl3Plus
free
];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}
)