587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
22 lines
306 B
Nix
22 lines
306 B
Nix
{
|
|
mkKdeDerivation,
|
|
qthttpserver,
|
|
qtsvg,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
kitemmodels,
|
|
kquickcharts,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "arianna";
|
|
|
|
extraBuildInputs = [
|
|
qthttpserver
|
|
qtsvg
|
|
qtwebchannel
|
|
qtwebengine
|
|
kitemmodels
|
|
kquickcharts
|
|
];
|
|
meta.mainProgram = "arianna";
|
|
}
|