forked from mirrors/nixpkgs
nss-pam-ldapd: fix build by disabling kerberos
This commit is contained in:
parent
306a07f8d4
commit
679e8fa932
|
@ -1,4 +1,7 @@
|
|||
{ stdenv, fetchurl, pkgconfig, openldap, python, pam, makeWrapper }:
|
||||
{ stdenv, fetchurl
|
||||
, pkgconfig, makeWrapper, autoreconfHook
|
||||
, openldap, python, pam
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nss-pam-ldapd-${version}";
|
||||
|
@ -9,8 +12,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1cqamcr6qpgwxijlr6kg7jspjamjra8w0haan0qssn0yxn95d7c0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ makeWrapper python openldap pam ];
|
||||
nativeBuildInputs = [ pkgconfig makeWrapper autoreconfHook ];
|
||||
buildInputs = [ openldap pam python ];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace Makefile.in --replace "install-data-local: " "# install-data-local: "
|
||||
|
@ -21,6 +24,7 @@ stdenv.mkDerivation rec {
|
|||
"--with-nslcd-socket=/run/nslcd/socket"
|
||||
"--with-nslcd-pidfile=/run/nslcd/nslcd.pid"
|
||||
"--with-pam-seclib-dir=$(out)/lib/security"
|
||||
"--enable-kerberos=no"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
|
|
Loading…
Reference in a new issue