{ lib , rustPlatform , fetchFromGitHub , installShellFiles , stdenv , Security }: rustPlatform.buildRustPackage rec { pname = "miniserve"; version = "0.22.0"; src = fetchFromGitHub { owner = "svenstaro"; repo = "miniserve"; rev = "v${version}"; hash = "sha256-pi+dBJE+EqQpyZAkIV7duK1g378J6BgjIiFcjV5H1fQ="; }; cargoSha256 = "sha256-nRTGKW33NO2vRkvpNVk4pT1DrHPEsSfhwf8y5pJ+n9U="; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ Security ]; checkFlags = [ "--skip=bind_ipv4_ipv6::case_2" "--skip=cant_navigate_up_the_root" "--skip=qrcode_hidden_in_tty_when_disabled" "--skip=qrcode_shown_in_tty_when_enabled" ]; postInstall = '' $out/bin/miniserve --print-manpage >miniserve.1 installManPage miniserve.1 installShellCompletion --cmd miniserve \ --bash <($out/bin/miniserve --print-completions bash) \ --fish <($out/bin/miniserve --print-completions fish) \ --zsh <($out/bin/miniserve --print-completions zsh) ''; meta = with lib; { description = "CLI tool to serve files and directories over HTTP"; homepage = "https://github.com/svenstaro/miniserve"; changelog = "https://github.com/svenstaro/miniserve/blob/v${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ figsoda ]; }; }