about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/cuda-modules/modules/generic/manifests/feature/package.nix
blob: 2c36a3e0cb2700b331404e83b23908c0f1e06590 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{lib, ...}:
let
  inherit (lib) options types;
  Outputs = import ./outputs.nix {inherit lib;};
in
options.mkOption {
  description = "A package in the manifest";
  example = (import ./release.nix {inherit lib;}).linux-x86_64;
  type = types.submodule {options.outputs = Outputs;};
}