mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
11 lines
136 B
Nix
11 lines
136 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qt5compat,
|
||
|
cyrus_sasl,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "ksmtp";
|
||
|
|
||
|
extraBuildInputs = [qt5compat cyrus_sasl];
|
||
|
}
|