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:
parent
3f59b0a61b
commit
b5acdd6fa0
1 changed files with 3 additions and 1 deletions
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue