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