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