mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #130710 from dan4ik605743/i3lock-blur
i3lock-blur: init at 2.10
This commit is contained in:
commit
bff88a1dcf
2 changed files with 23 additions and 0 deletions
21
pkgs/applications/window-managers/i3/lock-blur.nix
Normal file
21
pkgs/applications/window-managers/i3/lock-blur.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ i3lock-color, lib, fetchFromGitHub }:
|
||||
|
||||
i3lock-color.overrideAttrs (oldAttrs : rec {
|
||||
pname = "i3lock-blur";
|
||||
version = "2.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "karulont";
|
||||
repo = "i3lock-blur";
|
||||
rev = version;
|
||||
sha256 = "sha256-rBQHYVD9rurzTEXrgEnOziOP22D2EePC1+EV9Wi2pa0=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "An improved screenlocker based upon XCB and PAM with background blurring filter";
|
||||
homepage = "https://github.com/karulont/i3lock-blur/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
|
@ -24844,6 +24844,8 @@ in
|
|||
cairo = cairo.override { xcbSupport = true; };
|
||||
};
|
||||
|
||||
i3lock-blur = callPackage ../applications/window-managers/i3/lock-blur.nix { };
|
||||
|
||||
i3lock-color = callPackage ../applications/window-managers/i3/lock-color.nix { };
|
||||
|
||||
i3lock-fancy = callPackage ../applications/window-managers/i3/lock-fancy.nix { };
|
||||
|
|
Loading…
Reference in a new issue