about summary refs log tree commit diff
path: root/pkgs/development/cuda-modules/modules/generic/manifests/feature/release.nix
blob: be3a30ffdc59d846251b249c1e166db3fc652894 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{lib, config, ...}:
let
  inherit (lib) options types;
  Package = import ./package.nix {inherit lib config;};
in
options.mkOption {
  description = "A release is an attribute set which includes a mapping from platform to package";
  example = (import ./manifest.nix {inherit lib;}).cuda_cccl;
  type = types.attrsOf Package.type;
}