mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
23 lines
733 B
Nix
23 lines
733 B
Nix
{ i3lock-color, lib, stdenv, 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;
|
|
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/i3lock-blur.x86_64-darwin
|
|
};
|
|
})
|