nixpkgs/pkgs/tools/networking/nss-pam-ldapd/default.nix
2017-05-27 02:53:22 +02:00

36 lines
1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, openldap, python, pam, makeWrapper }:
stdenv.mkDerivation rec {
name = "nss-pam-ldapd-${version}";
version = "0.9.7";
src = fetchurl {
url = "http://arthurdejong.org/nss-pam-ldapd/${name}.tar.gz";
sha256 = "1sw36w6zkzvabvjckqick032j5p5xi0qi3sgnh0znzxz31jqvf0d";
};
buildInputs = [ makeWrapper pkgconfig python openldap pam ];
preConfigure = ''
substituteInPlace Makefile.in --replace "install-data-local: " "# install-data-local: "
'';
configureFlags = [
"--with-bindpw-file=/run/nslcd/bindpw"
"--with-nslcd-socket=/run/nslcd/socket"
"--with-nslcd-pidfile=/run/nslcd/nslcd.pid"
"--with-pam-seclib-dir=$(out)/lib/security"
];
postInstall = ''
wrapProgram $out/sbin/nslcd --prefix LD_LIBRARY_PATH ":" $out/lib
'';
meta = with stdenv.lib; {
description = "LDAP identity and authentication for NSS/PAM";
homepage = http://arthurdejong.org/nss-pam-ldapd/;
license = licenses.lgpl21;
platforms = platforms.linux;
};
}