mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, pkg-config, makeWrapper, autoreconfHook
|
|
, openldap, python3, pam
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nss-pam-ldapd";
|
|
version = "0.9.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://arthurdejong.org/nss-pam-ldapd/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-xtZh50aTy/Uxp5BjHKk7c/KR+yPMOUZbCd642iv7DhQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper autoreconfHook ];
|
|
buildInputs = [ openldap pam python3 ];
|
|
|
|
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"
|
|
"--enable-kerberos=no"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/sbin/nslcd --prefix LD_LIBRARY_PATH ":" $out/lib
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "LDAP identity and authentication for NSS/PAM";
|
|
homepage = "https://arthurdejong.org/nss-pam-ldapd/";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|