nixpkgs/pkgs/tools/misc/miniserve/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2020-04-14 04:43:26 +00:00
, rustPlatform
, fetchFromGitHub
, installShellFiles
, stdenv
, 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";
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}";
hash = "sha256-nHcJw5RwvXoBQRS/AtUqCuoFRc9FnYtehkMSWn7GiKI=";
2018-11-20 22:02:24 +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 [
darwin.apple_sdk.frameworks.Security
];
nativeCheckInputs = [
curl
2022-03-18 09:13:05 +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"
];
2018-11-20 22:02:24 +00:00
postInstall = ''
2022-04-19 11:01:51 +00:00
$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)
'';
__darwinAllowLocalNetworking = true;
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";
changelog = "https://github.com/svenstaro/miniserve/blob/v${version}/CHANGELOG.md";
2020-04-14 04:43:26 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ figsoda ];
2018-11-20 22:02:24 +00:00
};
}