nixpkgs/pkgs/os-specific/linux/pam_pgsql/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
773 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, postgresql, libgcrypt, pam }:
2015-10-19 13:29:34 +03:00
stdenv.mkDerivation rec {
pname = "pam_pgsql";
version = "unstable-2020-05-05";
2015-10-19 13:29:34 +03:00
src = fetchFromGitHub {
owner = "pam-pgsql";
repo = "pam-pgsql";
rev = "f9fd1e1a0daf754e6764a31db5cbec6f9fc02b3d";
sha256 = "1bvddrwyk1479wibyayzc24h62qzfnlbk9qvdhb31yw9yn17gp6k";
2015-10-19 13:29:34 +03:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2015-10-19 13:29:34 +03:00
buildInputs = [ libgcrypt pam postgresql ];
meta = with lib; {
2015-10-19 13:29:34 +03:00
description = "Support to authenticate against PostgreSQL for PAM-enabled appliations";
homepage = "https://github.com/pam-pgsql/pam-pgsql";
2015-10-19 13:29:34 +03:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}