Merge pull request #266350 from h7x4/pkgs-init-pam-honeycreds
pam-honeycreds: init at 1.9
This commit is contained in:
commit
09a92af338
1 changed files with 25 additions and 0 deletions
25
pkgs/by-name/pa/pam-honeycreds/package.nix
Normal file
25
pkgs/by-name/pa/pam-honeycreds/package.nix
Normal 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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue