22 lines
274 B
Nix
22 lines
274 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qthttpserver,
|
||
|
qtsvg,
|
||
|
qtwebchannel,
|
||
|
qtwebengine,
|
||
|
kitemmodels,
|
||
|
kquickcharts,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "arianna";
|
||
|
|
||
|
extraBuildInputs = [
|
||
|
qthttpserver
|
||
|
qtsvg
|
||
|
qtwebchannel
|
||
|
qtwebengine
|
||
|
kitemmodels
|
||
|
kquickcharts
|
||
|
];
|
||
|
}
|