12 lines
184 B
Nix
12 lines
184 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qttools,
|
||
|
qtdeclarative,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kconfig";
|
||
|
|
||
|
extraNativeBuildInputs = [ qttools ];
|
||
|
extraPropagatedBuildInputs = [ qtdeclarative ];
|
||
|
}
|