12 lines
181 B
Nix
12 lines
181 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
extra-cmake-modules,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kross-interpreters";
|
||
|
|
||
|
extraBuildInputs = [extra-cmake-modules];
|
||
|
# FIXME(qt5)
|
||
|
meta.broken = true;
|
||
|
}
|