mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
11 lines
134 B
Nix
11 lines
134 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
cyrus_sasl,
|
||
|
openldap,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kldap";
|
||
|
|
||
|
extraBuildInputs = [cyrus_sasl openldap];
|
||
|
}
|