mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
31 lines
805 B
Nix
31 lines
805 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
pkgs,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "firefox-mod-blur";
|
|
version = "v2.7.8";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "datguypiko";
|
|
repo = "Firefox-Mod-Blur";
|
|
rev = "refs/heads/master";
|
|
sha256 = "sha256-3d+dJVvOqMO+egFrEY1fdCeFpkVvsRvXoOs3rPnI/sc=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r * "$out/"
|
|
cp -r "$out/EXTRA MODS/Bookmarks Bar Mods/Bookmarks bar same color as toolbar/bookmarks_bar_same_color_as_toolbar.css" "$out/"
|
|
cp -r "$out/EXTRA MODS/Search Bar Mods/Search box - No search engine buttons/no_search_engines_in_url_bar.css" "$out/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Firefox Mod Blur";
|
|
homepage = "https://github.com/datguypiko/Firefox-Mod-Blur";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|