mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
12 lines
140 B
Nix
12 lines
140 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kxmlgui";
|
|
|
|
hasPythonBindings = true;
|
|
|
|
extraBuildInputs = [ qttools ];
|
|
}
|