mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
ce77225e21
This is the thing you want to look at.
13 lines
247 B
Nix
13 lines
247 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtsvg,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kuserfeedback";
|
|
|
|
# Disable server-side stuff we don't care about
|
|
extraCmakeFlags = ["-DENABLE_CONSOLE=0" "-DENABLE_CLI=0"];
|
|
extraNativeBuildInputs = [qttools qtsvg];
|
|
}
|