about summary refs log tree commit diff
path: root/pkgs/by-name/pa
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-12-04 01:13:43 +0100
committerGitHub <noreply@github.com>2023-12-04 01:13:43 +0100
commit09a92af338df1d5ee6887f8907d239843d86dec1 (patch)
tree44cb6868013feb4c8b2ed01e0673903b185a984d /pkgs/by-name/pa
parentf4001d4551edb8996289778acf7fd0841871f2e5 (diff)
parent4d9f4c07cb9500ffd949547f6a64ac1b618e38be (diff)
downloadnixlib-09a92af338df1d5ee6887f8907d239843d86dec1.tar
nixlib-09a92af338df1d5ee6887f8907d239843d86dec1.tar.gz
nixlib-09a92af338df1d5ee6887f8907d239843d86dec1.tar.bz2
nixlib-09a92af338df1d5ee6887f8907d239843d86dec1.tar.lz
nixlib-09a92af338df1d5ee6887f8907d239843d86dec1.tar.xz
nixlib-09a92af338df1d5ee6887f8907d239843d86dec1.tar.zst
nixlib-09a92af338df1d5ee6887f8907d239843d86dec1.zip
Merge pull request #266350 from h7x4/pkgs-init-pam-honeycreds
pam-honeycreds: init at 1.9
Diffstat (limited to 'pkgs/by-name/pa')
-rw-r--r--pkgs/by-name/pa/pam-honeycreds/package.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/by-name/pa/pam-honeycreds/package.nix b/pkgs/by-name/pa/pam-honeycreds/package.nix
new file mode 100644
index 000000000000..9c96e1c317fd
--- /dev/null
+++ b/pkgs/by-name/pa/pam-honeycreds/package.nix
@@ -0,0 +1,25 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, pam
+}:
+stdenv.mkDerivation (finalAttrs: {
+  pname = "pam-honeycreds";
+  version = "1.9";
+  src = fetchFromGitHub {
+    owner = "ColumPaget";
+    repo = "pam_honeycreds";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-GRJnH431foNI10g95rrtgi31DM15FWhzNq9L0SwoZoM=";
+  };
+
+  buildInputs = [ pam ];
+
+  meta = with lib; {
+    homepage = "https://github.com/ColumPaget/pam_honeycreds";
+    description = "PAM module that sends warnings when fake passwords are used";
+    license = licenses.gpl3Only;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ h7x4 ];
+  };
+})