68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
libxcb,
|
|
xcbutilkeysyms,
|
|
xcbutilimage,
|
|
xcbutilxrm,
|
|
pam,
|
|
libX11,
|
|
libev,
|
|
cairo,
|
|
libxkbcommon,
|
|
libxkbfile,
|
|
xorg,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "i3lock";
|
|
version = "2.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "i3";
|
|
repo = "i3lock";
|
|
rev = version;
|
|
sha256 = "sha256-OyV6GSLnNV3GUqrfs3OBnIaBvicH2PXgeY4acOk5dR4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
libxcb
|
|
xcbutilkeysyms
|
|
xcbutilimage
|
|
xcbutilxrm
|
|
pam
|
|
libX11
|
|
libev
|
|
cairo
|
|
libxkbcommon
|
|
libxkbfile
|
|
xorg.xcbutil
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple screen locker like slock";
|
|
longDescription = ''
|
|
Simple screen locker. After locking, a colored background (default: white) or
|
|
a configurable image is shown, and a ring-shaped unlock-indicator gives feedback
|
|
for every keystroke. After entering your password, the screen is unlocked again.
|
|
'';
|
|
homepage = "https://i3wm.org/i3lock/";
|
|
maintainers = with maintainers; [
|
|
malyn
|
|
domenkozar
|
|
];
|
|
mainProgram = "i3lock";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
}
|