2021-02-28 03:03:03 +00:00
|
|
|
{ lib
|
2020-04-14 04:43:26 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-03-29 06:30:54 +00:00
|
|
|
, installShellFiles
|
2022-09-12 16:42:23 +00:00
|
|
|
, stdenv
|
2023-03-01 03:28:11 +00:00
|
|
|
, darwin
|
|
|
|
, curl
|
2020-04-14 04:43:26 +00:00
|
|
|
}:
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "miniserve";
|
2023-04-28 03:04:49 +00:00
|
|
|
version = "0.23.2";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-04-14 04:43:26 +00:00
|
|
|
owner = "svenstaro";
|
|
|
|
repo = "miniserve";
|
|
|
|
rev = "v${version}";
|
2023-04-28 03:04:49 +00:00
|
|
|
hash = "sha256-nHcJw5RwvXoBQRS/AtUqCuoFRc9FnYtehkMSWn7GiKI=";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2023-04-28 03:04:49 +00:00
|
|
|
cargoHash = "sha256-97eNe+gmRXhmfw+pkHAfG8TTxOgBZOPPuXeKT0fWGr4=";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2022-03-18 09:13:05 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
2023-03-01 03:28:11 +00:00
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
curl
|
2022-03-18 09:13:05 +00:00
|
|
|
];
|
2021-03-21 05:01:06 +00:00
|
|
|
|
2021-08-31 21:28:13 +00:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=bind_ipv4_ipv6::case_2"
|
2022-09-20 03:28:47 +00:00
|
|
|
"--skip=qrcode_hidden_in_tty_when_disabled"
|
|
|
|
"--skip=qrcode_shown_in_tty_when_enabled"
|
2021-08-31 21:28:13 +00:00
|
|
|
];
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2021-03-29 06:30:54 +00:00
|
|
|
postInstall = ''
|
2022-04-19 11:01:51 +00:00
|
|
|
$out/bin/miniserve --print-manpage >miniserve.1
|
|
|
|
installManPage miniserve.1
|
|
|
|
|
2021-03-29 06:30:54 +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-01 03:28:11 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-03-18 09:13:05 +00:00
|
|
|
description = "CLI tool to serve files and directories over HTTP";
|
2020-04-14 04:43:26 +00:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
2022-09-12 16:42:23 +00:00
|
|
|
changelog = "https://github.com/svenstaro/miniserve/blob/v${version}/CHANGELOG.md";
|
2020-04-14 04:43:26 +00:00
|
|
|
license = with licenses; [ mit ];
|
2022-09-12 16:42:23 +00:00
|
|
|
maintainers = with maintainers; [ figsoda ];
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|