summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam_dp9ik/default.nix
blob: 382a3ca7b17909487d4c4174ba20cc6be3bc2301 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, tlsclient
, stdenv
, pkg-config
, pam
}:

stdenv.mkDerivation {
  inherit (tlsclient) src version enableParallelBuilding;

  pname = "pam_dp9ik";

  strictDeps = true;
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ pam ];

  makeFlags = [ "pam_p9.so" ];
  installPhase = ''
    install -Dm755 -t $out/lib/security/ pam_p9.so
  '';

  meta = with lib; {
    description = "dp9ik pam module";
    longDescription = "Uses tlsclient to authenticate users against a 9front auth server";
    homepage = "https://git.sr.ht/~moody/tlsclient";
    license = licenses.mit;
    maintainers = with maintainers; [ moody ];
    platforms = platforms.linux;
  };
}