Merge pull request #266350 from h7x4/pkgs-init-pam-honeycreds

pam-honeycreds: init at 1.9
This commit is contained in:
Peder Bergebakken Sundt 2023-12-04 01:13:43 +01:00 committed by GitHub
commit 09a92af338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
})