Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
954 B
Nix
40 lines
954 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "plasma-plugin-blurredwallpaper";
|
|
version = "3.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bouteillerAlan";
|
|
repo = "blurredwallpaper";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-pklqYT8o1AfOAjQTl3rVm+XWXoL+pGChpjx40ywr8Xs=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -d $out/share/plasma/wallpapers/a2n.blur{,.plasma5}
|
|
cp -r a2n.blur{,.plasma5} $out/share/plasma/wallpapers/
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Plasma 6 wallpaper plugin to blur the wallpaper of active window";
|
|
homepage = "https://github.com/bouteillerAlan/blurredwallpaper";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [
|
|
dr460nf1r3
|
|
johnrtitor
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|