nixpkgs/pkgs/development/libraries/kde-frameworks/syntax-highlighting.nix

11 lines
263 B
Nix
Raw Normal View History

2016-12-14 02:53:43 +03:00
{ kdeFramework, lib
, extra-cmake-modules, perl, qtbase, qttools
2016-12-14 02:53:43 +03:00
}:
kdeFramework {
name = "syntax-highlighting";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules perl qttools ];
buildInputs = [ qtbase ];
2016-12-14 02:53:43 +03:00
}