nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, config, ... }:
2let
3 inherit (lib) options trivial types;
4 Release = import ./release.nix { inherit lib config; };
5in
6options.mkOption {
7 description = "Feature manifest is an attribute set which includes a mapping from package name to release";
8 example = trivial.importJSON ../../../../cuda/manifests/feature_11.5.2.json;
9 type = types.attrsOf Release.type;
10}