89 lines
1.8 KiB
Nix
89 lines
1.8 KiB
Nix
{
|
|
cairo,
|
|
fetchFromGitHub,
|
|
gdk-pixbuf,
|
|
lib,
|
|
libxcrypt,
|
|
libxkbcommon,
|
|
makeWrapper,
|
|
meson,
|
|
ninja,
|
|
nix-update-script,
|
|
pam,
|
|
pkg-config,
|
|
scdoc,
|
|
stdenv,
|
|
swaybg,
|
|
systemd,
|
|
versionCheckHook,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "swaylock-plugin";
|
|
version = "1.8.3";
|
|
src = fetchFromGitHub {
|
|
owner = "mstoeckl";
|
|
repo = "swaylock-plugin";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-j2MTmk2hS7yUFo/OMQpYxG03HxxTxpbzbnl6na3jjzY=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
scdoc
|
|
wayland-scanner
|
|
];
|
|
buildInputs = [
|
|
cairo
|
|
libxcrypt
|
|
gdk-pixbuf
|
|
libxkbcommon
|
|
pam
|
|
systemd
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/swaylock-plugin \
|
|
--prefix PATH : "${lib.makeBinPath [ swaybg ]}"
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dpam=enabled"
|
|
"-Dgdk-pixbuf=enabled"
|
|
"-Dman-pages=enabled"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Screen locker for Wayland, forked from swaylock";
|
|
longDescription = ''
|
|
swaylock-pulgins is a fork of swaylock, a screen locking utility for Wayland compositors.
|
|
On top of the usual swaylock features, it allow you to use a
|
|
subcommand to generate the lockscreen background.
|
|
|
|
Important note: You need to set "security.pam.services.swaylock-plugin = {};" manually.
|
|
'';
|
|
homepage = "https://github.com/mstoeckl/swaylock-plugin";
|
|
mainProgram = "swaylock-plugin";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ picnoir ];
|
|
};
|
|
})
|