mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
12 lines
141 B
Nix
12 lines
141 B
Nix
{
|
|
mkKdeDerivation,
|
|
boost,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "rocs";
|
|
|
|
extraBuildInputs = [ boost ];
|
|
# FIXME(qt5)
|
|
meta.broken = true;
|
|
}
|