16 lines
371 B
Nix
16 lines
371 B
Nix
{
|
|
kdeFramework, lib,
|
|
bison, extra-cmake-modules, flex,
|
|
qtbase, qtdeclarative, qttools
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "solid";
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
|
|
};
|
|
nativeBuildInputs = [ bison extra-cmake-modules flex qttools ];
|
|
propagatedBuildInputs = [ qtdeclarative ];
|
|
}
|