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