mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
![stuebinm](/assets/img/avatar_default.png)
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
16 lines
336 B
Nix
16 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";
|
|
}
|