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