3
0
Fork 0
forked from mirrors/nixpkgs

nss-pam-ldapd: fix build by disabling kerberos

This commit is contained in:
Jörg Thalheim 2018-12-21 10:22:20 +01:00
parent 306a07f8d4
commit 679e8fa932
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

@ -1,16 +1,19 @@
{ stdenv, fetchurl, pkgconfig, openldap, python, pam, makeWrapper }:
{ stdenv, fetchurl
, pkgconfig, makeWrapper, autoreconfHook
, openldap, python, pam
}:
stdenv.mkDerivation rec {
name = "nss-pam-ldapd-${version}";
version = "0.9.10";
src = fetchurl {
url = "https://arthurdejong.org/nss-pam-ldapd/${name}.tar.gz";
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 = ''