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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
233 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules, perl, qtbase, qttools
}:
mkDerivation {
pname = "syntax-highlighting";
nativeBuildInputs = [ extra-cmake-modules perl ];
buildInputs = [ qttools ];
propagatedBuildInputs = [ qtbase ];
}