add firefox-mod-blur theme

This commit is contained in:
2024-05-13 22:40:54 +05:30
parent ea34b0c281
commit f950068e3a
5 changed files with 40 additions and 931 deletions

View File

@ -1,4 +1,5 @@
{pkgs, ...}: {
nvchad = pkgs.callPackage ./nvchad {};
astronvim = pkgs.callPackage ./astronvim {};
firefox-mod-blur = pkgs.callPackage ./firefox-mod-blur {};
}

View File

@ -0,0 +1,28 @@
{
lib,
stdenv,
pkgs,
}:
stdenv.mkDerivation {
pname = "firefox-mod-blur";
version = "v2.7.6";
src = pkgs.fetchFromGitHub {
owner = "datguypiko";
repo = "Firefox-Mod-Blur";
rev = "refs/heads/master";
sha256 = "sha256-9dPL+pVnOsAxzFWRjSk+RSe+x/CKQk3iQAyQDBrVE9U=";
};
installPhase = ''
mkdir $out
cp -r * "$out/"
'';
meta = with lib; {
description = "Firefox Mod Blur";
homepage = "https://github.com/datguypiko/Firefox-Mod-Blur";
platforms = platforms.all;
license = licenses.gpl3;
};
}