summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam_dp9ik
diff options
context:
space:
mode:
authorJacob Moody <moody@posixcafe.org>2023-07-01 14:48:38 -0500
committerJacob Moody <moody@posixcafe.org>2023-07-09 14:12:21 -0500
commit5f97e78c64c672361cb18b67c1383363274d7521 (patch)
tree64bdd161990340a868ed75e599f81676f64b6b35 /pkgs/os-specific/linux/pam_dp9ik
parent17b5dc87059840742cbdd60b259f2201b8ba3020 (diff)
downloadnixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.tar
nixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.tar.gz
nixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.tar.bz2
nixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.tar.lz
nixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.tar.xz
nixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.tar.zst
nixpkgs-5f97e78c64c672361cb18b67c1383363274d7521.zip
pam_dp9ik: init at 1.5
Diffstat (limited to 'pkgs/os-specific/linux/pam_dp9ik')
-rw-r--r--pkgs/os-specific/linux/pam_dp9ik/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/pam_dp9ik/default.nix b/pkgs/os-specific/linux/pam_dp9ik/default.nix
new file mode 100644
index 00000000000..382a3ca7b17
--- /dev/null
+++ b/pkgs/os-specific/linux/pam_dp9ik/default.nix
@@ -0,0 +1,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;
+  };
+}