14 lines
146 B
Nix
14 lines
146 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
cyrus_sasl,
|
||
|
openldap,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kldap";
|
||
|
|
||
|
extraBuildInputs = [
|
||
|
cyrus_sasl
|
||
|
openldap
|
||
|
];
|
||
|
}
|