summaryrefslogtreecommitdiff
path: root/lib/auth/default.nix
blob: 3b8b276dce86c168e883dfe87c8599a098488f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkAstalPkg,
  pkgs,
  ...
}:
mkAstalPkg {
  pname = "astal-auth";
  src = ./.;
  packages = [pkgs.pam];

  libname = "auth";
  gir-suffix = "Auth";
  authors = "kotontrion";
  description = "Authentication using pam";
}