mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
ce77225e21
This is the thing you want to look at.
12 lines
171 B
Nix
12 lines
171 B
Nix
{
|
|
mkKdeDerivation,
|
|
extra-cmake-modules,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kdevelop";
|
|
|
|
extraBuildInputs = [extra-cmake-modules];
|
|
# FIXME(qt5)
|
|
meta.broken = true;
|
|
}
|