about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/gear/falkon/default.nix
blob: 3fb5a9e16dbbeb375d3bd56860efe4a96f91ecc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  mkKdeDerivation,
  extra-cmake-modules,
  qtwebchannel,
  qtwebengine,
  qttools,
  python3Packages,
}:
mkKdeDerivation {
  pname = "falkon";

  extraNativeBuildInputs = [qttools qtwebchannel qtwebengine];
  extraBuildInputs = [extra-cmake-modules qtwebchannel qtwebengine python3Packages.pyside6];
}