16 lines
202 B
Nix
16 lines
202 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtwebengine,
|
||
|
qttools,
|
||
|
libxslt,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "mailcommon";
|
||
|
|
||
|
extraNativeBuildInputs = [ libxslt ];
|
||
|
extraBuildInputs = [
|
||
|
qtwebengine
|
||
|
qttools
|
||
|
];
|
||
|
}
|