-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hardened-chromium: init at 130.0.6723.69
- Loading branch information
1 parent
d2f71c7
commit dec9d14
Showing
6 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
pkgs/applications/networking/browsers/chromium/hardened.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ stdenv | ||
, fetchFromGitHub | ||
, python3Packages | ||
, makeWrapper | ||
, patch | ||
}: | ||
|
||
{ rev | ||
, hash | ||
}: | ||
|
||
stdenv.mkDerivation { | ||
pname = "hardened-chromium"; | ||
|
||
version = rev; | ||
|
||
src = fetchFromGitHub { | ||
owner = "secureblue"; | ||
repo = "hardened-chromium"; | ||
inherit rev hash; | ||
}; | ||
|
||
dontBuild = true; | ||
dontFixup = true; | ||
|
||
installPhase = '' | ||
mkdir $out | ||
cp -R *patches $out/ | ||
''; | ||
} |
16 changes: 16 additions & 0 deletions
16
pkgs/applications/networking/browsers/chromium/upstream-info.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters