mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
ce77225e21
This is the thing you want to look at.
12 lines
139 B
Nix
12 lines
139 B
Nix
{
|
|
mkKdeDerivation,
|
|
boost,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "rocs";
|
|
|
|
extraBuildInputs = [boost];
|
|
# FIXME(qt5)
|
|
meta.broken = true;
|
|
}
|