mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
21 lines
273 B
Nix
21 lines
273 B
Nix
{
|
|
mkKdeDerivation,
|
|
qthttpserver,
|
|
qtsvg,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
kitemmodels,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "arianna";
|
|
|
|
extraBuildInputs = [
|
|
qthttpserver
|
|
qtsvg
|
|
qtwebchannel
|
|
qtwebengine
|
|
kitemmodels
|
|
];
|
|
meta.mainProgram = "arianna";
|
|
}
|