mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 17:56:35 +05:30
add firefox-mod-blur theme
This commit is contained in:
28
pkgs/firefox-mod-blur/default.nix
Normal file
28
pkgs/firefox-mod-blur/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user