nixpkgs/pkgs/development/libraries/kde-frameworks/solid.nix

13 lines
242 B
Nix
Raw Normal View History

2016-10-04 15:08:05 +00:00
{
kdeFramework, lib,
bison, ecm, flex,
qtdeclarative
2016-04-21 15:32:21 +00:00
}:
kdeFramework {
name = "solid";
2016-04-28 16:05:44 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-10-04 15:08:05 +00:00
nativeBuildInputs = [ bison ecm flex ];
2016-04-28 16:05:44 +00:00
propagatedBuildInputs = [ qtdeclarative ];
2016-04-21 15:32:21 +00:00
}