Skip to content

Commit

Permalink
swaylock-plugin: init at 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
picnoir committed Oct 31, 2024
1 parent ec78e5d commit 50116aa
Showing 1 changed file with 83 additions and 0 deletions.
83 changes: 83 additions & 0 deletions pkgs/by-name/sw/swaylock-plugin/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
{
lib,
stdenv,
cairo,
fetchFromGitHub,
fetchpatch,
gdk-pixbuf,
libxcrypt,
libxkbcommon,
meson,
ninja,
nix-update-script,
pam,
pkg-config,
scdoc,
wayland,
wayland-protocols,
wayland-scanner,
}:

stdenv.mkDerivation (final: {
version = "1.8.0";
src = fetchFromGitHub {
owner = "mstoeckl";
repo = "swaylock-plugin";
rev = "refs/tags/v${final.version}";
hash = "sha256-Kd6Gqs+YnQu3qKfEeqW5CG38bU2gH2hqjoFEojWa8a4=";
};
pname = "swaylock-plugin";

strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [
meson
ninja
pkg-config
scdoc
wayland-scanner
];
buildInputs = [
cairo
libxcrypt
gdk-pixbuf
libxkbcommon
pam
wayland
wayland-protocols
];

patches = [
# To remove for release > 1.8.0
(fetchpatch {
url = "https://github.com/mstoeckl/swaylock-plugin/commit/337a6a31dc354426ebf32e31ded56a7e5d350c7a.patch";
hash = "sha256-r1BSubdnd0HzXvNDJm1qhdEltL27dHjPR1WlxaraHlc=";
})
];

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.
'';
inherit (final.src.meta) homepage;
mainProgram = "swaylock-plugin";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ picnoir ];
};
})

0 comments on commit 50116aa

Please sign in to comment.