2021-03-09 03:18:52 +00:00
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-03-20 04:20:00 +00:00
|
|
|
, installShellFiles
|
2022-09-14 18:05:37 +00:00
|
|
|
, stdenv
|
2023-03-04 12:14:45 +00:00
|
|
|
, darwin
|
|
|
|
, curl
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "miniserve";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "0.28.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "svenstaro";
|
|
|
|
repo = "miniserve";
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-jrQnmIYap5eHVWPqoRsXVroB0VWLKxesi3rB/WylR0U=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
cargoHash = "sha256-/BBue4YfpFk/tId2GV9sstEdgNuy3QnieINGnx45ydU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
2023-03-04 12:14:45 +00:00
|
|
|
darwin.apple_sdk.frameworks.Security
|
2024-02-07 01:22:34 +00:00
|
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
2023-03-04 12:14:45 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
curl
|
2022-03-30 09:31:56 +00:00
|
|
|
];
|
2021-03-23 19:22:30 +00:00
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=bind_ipv4_ipv6::case_2"
|
2022-09-22 12:36:57 +00:00
|
|
|
"--skip=qrcode_hidden_in_tty_when_disabled"
|
|
|
|
"--skip=qrcode_shown_in_tty_when_enabled"
|
2024-02-07 01:22:34 +00:00
|
|
|
"--skip=show_root_readme_contents"
|
|
|
|
"--skip=validate_printed_urls"
|
2021-09-18 10:52:07 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
2022-04-27 09:35:20 +00:00
|
|
|
$out/bin/miniserve --print-manpage >miniserve.1
|
|
|
|
installManPage miniserve.1
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
installShellCompletion --cmd miniserve \
|
|
|
|
--bash <($out/bin/miniserve --print-completions bash) \
|
|
|
|
--fish <($out/bin/miniserve --print-completions fish) \
|
|
|
|
--zsh <($out/bin/miniserve --print-completions zsh)
|
|
|
|
'';
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-03-30 09:31:56 +00:00
|
|
|
description = "CLI tool to serve files and directories over HTTP";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
2022-09-14 18:05:37 +00:00
|
|
|
changelog = "https://github.com/svenstaro/miniserve/blob/v${version}/CHANGELOG.md";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = with licenses; [ mit ];
|
2022-09-14 18:05:37 +00:00
|
|
|
maintainers = with maintainers; [ figsoda ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "miniserve";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|