7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
24 lines
372 B
Nix
24 lines
372 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";
|
|
}
|