mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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";
|
|
}
|