i3lock-blur: add libGL build input

Currently, this is propagated from cairo, but that will soon no longer
be the case.
This commit is contained in:
Alyssa Ross
2023-10-20 22:02:49 +00:00
parent 3f59b0a61b
commit b5acdd6fa0
@@ -1,4 +1,4 @@
{ i3lock-color, lib, stdenv, fetchFromGitHub, fetchpatch }:
{ i3lock-color, lib, stdenv, fetchFromGitHub, fetchpatch, libGL }:
i3lock-color.overrideAttrs (oldAttrs : rec {
pname = "i3lock-blur";
@@ -21,6 +21,8 @@ i3lock-color.overrideAttrs (oldAttrs : rec {
})
];
buildInputs = oldAttrs.buildInputs ++ [ libGL ];
meta = with lib; {
description = "An improved screenlocker based upon XCB and PAM with background blurring filter";
homepage = "https://github.com/karulont/i3lock-blur/";