9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
10 lines
232 B
Nix
10 lines
232 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules, perl, qtbase, qttools
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "syntax-highlighting";
|
|
nativeBuildInputs = [ extra-cmake-modules perl ];
|
|
buildInputs = [ qttools ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|