93b08a7061
```bash nix run github:NixOS/nixpkgs/ab6071eb54cc9b66dda436111d4f569e4e56cbf4#nixfmt-rfc-style -L --allow-import-from-derivation -- pkgs/development/cuda-modules pkgs/test/cuda pkgs/top-level/cuda-packages.nix ```
17 lines
460 B
Nix
17 lines
460 B
Nix
{ options, ... }:
|
|
{
|
|
options.tensorrt.releases = options.generic.releases;
|
|
# TODO(@connorbaker): Figure out how to add additional options to the
|
|
# to the generic release.
|
|
# {
|
|
# cudnnVersion = lib.options.mkOption {
|
|
# description = "The CUDNN version supported";
|
|
# type = types.nullOr majorMinorVersion;
|
|
# };
|
|
# filename = lib.options.mkOption {
|
|
# description = "The tarball name";
|
|
# type = types.str;
|
|
# };
|
|
# }
|
|
}
|