587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
15 lines
336 B
Nix
15 lines
336 B
Nix
{
|
|
mkKdeDerivation,
|
|
extra-cmake-modules,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
qttools,
|
|
python3Packages,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "falkon";
|
|
|
|
extraNativeBuildInputs = [qttools qtwebchannel qtwebengine];
|
|
extraBuildInputs = [extra-cmake-modules qtwebchannel qtwebengine python3Packages.pyside6];
|
|
meta.mainProgram = "falkon";
|
|
}
|