ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

only compile `markdown_help` in debug builds

+5 -3
+1 -1
doc/default.nix
··· 7 7 }: 8 8 { 9 9 packages.docs = pkgs.callPackage ./package.nix { 10 - inherit (self'.packages) wire-small wire-dignostics-md; 10 + inherit (self'.packages) wire-small-dev wire-dignostics-md; 11 11 }; 12 12 }; 13 13 }
+2 -2
doc/package.nix
··· 2 2 lib, 3 3 nixosOptionsDoc, 4 4 runCommand, 5 - wire-small, 5 + wire-small-dev, 6 6 wire-dignostics-md, 7 7 nix, 8 8 nodejs, ··· 42 42 inherit (pkg) version; 43 43 pname = pkg.name; 44 44 nativeBuildInputs = [ 45 - wire-small 45 + wire-small-dev 46 46 nodejs 47 47 pnpm.configHook 48 48 nix
+1
wire/cli/src/cli.rs
··· 46 46 #[arg(long, global = true, default_value_t = false)] 47 47 pub show_trace: bool, 48 48 49 + #[cfg(debug_assertions)] 49 50 #[arg(long, hide = true, global = true)] 50 51 pub markdown_help: bool, 51 52 }
+1
wire/cli/src/main.rs
··· 38 38 let modifiers = args.to_subcommand_modifiers(); 39 39 setup_logging(args.verbose, clobber_lock.clone()); 40 40 41 + #[cfg(debug_assertions)] 41 42 if args.markdown_help { 42 43 clap_markdown::print_help_markdown::<Cli>(); 43 44 return Ok(());