mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
14 lines
287 B
Nix
14 lines
287 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kjobwidgets";
|
|
|
|
extraNativeBuildInputs = [ qttools ];
|
|
|
|
# FIXME: depends on kcoreaddons typesystem info, we need
|
|
# a Shiboken wrapper to propagate this properly.
|
|
extraCmakeFlags = [ "-DBUILD_PYTHON_BINDINGS=OFF" ];
|
|
}
|