c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
14 lines
305 B
Nix
14 lines
305 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];
|
|
}
|