mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
meta: Move friendlyfox to separate package
Makes it easier to do things like update friendlyfox in the future.
This commit is contained in:
parent
c462dc20e8
commit
3e5290a6ba
@ -9,39 +9,7 @@
|
|||||||
let
|
let
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
|
||||||
friendlyfox = pkgs.stdenvNoCC.mkDerivation (finalAttrs: {
|
friendlyfox = pkgs.callPackage ../packages/friendlyfox.nix { };
|
||||||
pname = "mobile-friendly-firefox";
|
|
||||||
version = "2.11.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitea {
|
|
||||||
domain = "codeberg.org";
|
|
||||||
owner = "user0";
|
|
||||||
repo = "Mobile-Friendly-Firefox";
|
|
||||||
rev = "v${finalAttrs.version}";
|
|
||||||
hash = "sha256-rA5lnfW5zOyfJ6pbcrsTBEhMEof5h/heGaHxST+q+AY=";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Fix for Firefox 127 and later (renamed id)
|
|
||||||
(pkgs.fetchpatch2 {
|
|
||||||
url = "https://codeberg.org/user0/Mobile-Friendly-Firefox/commit/bfb7946973bf707d0494714679df47ec66017f97.patch";
|
|
||||||
hash = "sha256-wJLXgNUUaNHVgCMi8sGnC5cx2yNwZwh2JoDaVMsVehY=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
install -Dm644 src/userContent/styles/fenix-colors/userContent.css -t $out
|
|
||||||
cat src/userChrome/fenix_one.css src/userChrome/dynamic_popups_pro.css > $out/userChrome.css
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
echo ".urlbarView { display: none !important; }" >> $out/userChrome.css
|
|
||||||
'';
|
|
||||||
});
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.librewolf = {
|
programs.librewolf = {
|
||||||
|
48
packages/friendlyfox.nix
Normal file
48
packages/friendlyfox.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenvNoCC,
|
||||||
|
fetchFromGitea,
|
||||||
|
fetchpatch2,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||||
|
pname = "friendlyfox";
|
||||||
|
version = "2.11.1";
|
||||||
|
|
||||||
|
src = fetchFromGitea {
|
||||||
|
domain = "codeberg.org";
|
||||||
|
owner = "user0";
|
||||||
|
repo = "Mobile-Friendly-Firefox";
|
||||||
|
rev = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-rA5lnfW5zOyfJ6pbcrsTBEhMEof5h/heGaHxST+q+AY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix for Firefox 127 and later (renamed id)
|
||||||
|
(fetchpatch2 {
|
||||||
|
url = "https://codeberg.org/user0/Mobile-Friendly-Firefox/commit/bfb7946973bf707d0494714679df47ec66017f97.patch";
|
||||||
|
hash = "sha256-wJLXgNUUaNHVgCMi8sGnC5cx2yNwZwh2JoDaVMsVehY=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
install -Dm644 src/userContent/styles/fenix-colors/userContent.css -t $out
|
||||||
|
cat src/userChrome/fenix_one.css src/userChrome/dynamic_popups_pro.css > $out/userChrome.css
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
echo ".urlbarView { display: none !important; }" >> $out/userChrome.css
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Custom CSS styles for Firefox browsers on Linux, with a focus on mobile devices like Librem 5 and PinePhone";
|
||||||
|
license = lib.licenses.mpl20;
|
||||||
|
homepage = "https://forums.puri.sm/t/tutorial-add-a-custom-background-in-phosh/13385/23";
|
||||||
|
maintainers = with lib.maintainers; [ donovanglover ];
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user