nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 10 lines 290 B view raw
1{ lib, ... }: 2let 3 inherit (lib) options types; 4 Outputs = import ./outputs.nix { inherit lib; }; 5in 6options.mkOption { 7 description = "Package in the manifest"; 8 example = (import ./release.nix { inherit lib; }).linux-x86_64; 9 type = types.submodule { options.outputs = Outputs; }; 10}