pam_pgsql: init at 0.7.3.2
This commit is contained in:
parent
b1bc31a5a7
commit
4f3a99d21d
24
pkgs/os-specific/linux/pam_pgsql/default.nix
Normal file
24
pkgs/os-specific/linux/pam_pgsql/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, postgresql, libgcrypt, pam }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.7.3.2";
|
||||
name = "pam_pgsql-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pam-pgsql";
|
||||
repo = "pam-pgsql";
|
||||
rev = "release-${version}";
|
||||
sha256 = "1a68krq5m07zspdxwl1wmkr5j98zr9bdg4776kvplrsdcg97h4jk";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ libgcrypt pam postgresql ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Support to authenticate against PostgreSQL for PAM-enabled appliations";
|
||||
homepage = https://github.com/pam-pgsql/pam-pgsql;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
@ -10120,6 +10120,8 @@ let
|
||||
|
||||
pam_mount = callPackage ../os-specific/linux/pam_mount { };
|
||||
|
||||
pam_pgsql = callPackage ../os-specific/linux/pam_pgsql { };
|
||||
|
||||
pam_ssh_agent_auth = callPackage ../os-specific/linux/pam_ssh_agent_auth { };
|
||||
|
||||
pam_u2f = callPackage ../os-specific/linux/pam_u2f { };
|
||||
|
Loading…
Reference in New Issue
Block a user