nixos-configs/packages/pam-fprint-grosshack/default.nix
matt1432 6aca512b8a
All checks were successful
Discord / discord commits (push) Has been skipped
docs: add generated packages readme
2025-01-20 15:06:16 -05:00

52 lines
1.2 KiB
Nix

{
lib,
pam-fprint-grosshack-src,
dbus,
glib,
libfprint,
libpam-wrapper,
meson,
ninja,
pam,
pkg-config,
polkit,
stdenv,
systemd,
...
}: let
inherit (builtins) elemAt head readFile split;
tag = head (split "'" (elemAt (split " version: '" (readFile "${pam-fprint-grosshack-src}/meson.build")) 2));
in
stdenv.mkDerivation {
pname = "pam-fprint-grosshack";
version = "${tag}+${pam-fprint-grosshack-src.shortRev}";
src = pam-fprint-grosshack-src;
nativeBuildInputs = [
meson
ninja
pkg-config
glib
libfprint
polkit
dbus
systemd
pam
libpam-wrapper
];
mesonFlags = [
"-Dpam_modules_dir=${placeholder "out"}/lib/security"
"-Dsysconfdir=${placeholder "out"}/etc"
"-Ddbus_service_dir=${placeholder "out"}/share/dbus-1/system-services"
"-Dsystemd_system_unit_dir=${placeholder "out"}/lib/systemd/system"
];
meta = {
description = "This is a fork of the pam module which implements the simultaneous
password and fingerprint behaviour present in pam_thinkfinger.";
homepage = "https://gitlab.com/mishakmak/pam-fprint-grosshack";
license = with lib.licenses; [gpl2Plus];
};
}