mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
12 lines
153 B
Nix
12 lines
153 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kwidgetsaddons";
|
|
|
|
hasPythonBindings = true;
|
|
|
|
extraNativeBuildInputs = [ qttools ];
|
|
}
|