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