5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
20 lines
273 B
Nix
20 lines
273 B
Nix
{
|
|
mkKdeDerivation,
|
|
qthttpserver,
|
|
qtsvg,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
kitemmodels,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "arianna";
|
|
|
|
extraBuildInputs = [
|
|
qthttpserver
|
|
qtsvg
|
|
qtwebchannel
|
|
qtwebengine
|
|
kitemmodels
|
|
];
|
|
meta.mainProgram = "arianna";
|
|
}
|