chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pl / plasma-plugin-blurredwallpaper / package.nix
blob7975785134c73168993cadc5d1ebb02a1bf4b841
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5   nix-update-script,
6 }:
7 stdenvNoCC.mkDerivation (finalAttrs: {
8   pname = "plasma-plugin-blurredwallpaper";
9   version = "3.2.0";
11   src = fetchFromGitHub {
12     owner = "bouteillerAlan";
13     repo = "blurredwallpaper";
14     rev = "v${finalAttrs.version}";
15     hash = "sha256-P/N7g/cl2K0R4NKebfqZnr9WQkHPSvHNbKbWiOxs76k=";
16   };
18   installPhase = ''
19     runHook preInstall
20     install -d $out/share/plasma/wallpapers/a2n.blur{,.plasma5}
21     cp -r a2n.blur{,.plasma5} $out/share/plasma/wallpapers/
22     runHook postInstall
23   '';
25   passthru = {
26     updateScript = nix-update-script { };
27   };
29   meta = {
30     description = "Plasma 6 wallpaper plugin to blur the wallpaper of active window";
31     homepage = "https://github.com/bouteillerAlan/blurredwallpaper";
32     license = lib.licenses.gpl3;
33     maintainers = with lib.maintainers; [
34       dr460nf1r3
35       johnrtitor
36     ];
37     platforms = lib.platforms.linux;
38   };