12 lines
214 B
Nix
12 lines
214 B
Nix
{ kdeFramework, lib
|
|
, ecm
|
|
, qtdeclarative
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "solid";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ ecm ];
|
|
propagatedBuildInputs = [ qtdeclarative ];
|
|
}
|