mirror of
https://github.com/RGBCube/ncc
synced 2026-01-13 16:51:02 +00:00
9 lines
146 B
Nix
9 lines
146 B
Nix
{ lib, ... }: let
|
|
inherit (lib) disabled enabled;
|
|
in {
|
|
documentation = {
|
|
doc = disabled;
|
|
info = disabled;
|
|
man = enabled;
|
|
};
|
|
}
|