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

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

55 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2020-04-14 06:43:26 +02:00
, rustPlatform
, fetchFromGitHub
, installShellFiles
, stdenv
2020-04-14 06:43:26 +02:00
, Security
}:
2018-11-20 23:02:24 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "miniserve";
2022-09-20 05:28:47 +02:00
version = "0.22.0";
2018-11-20 23:02:24 +01:00
src = fetchFromGitHub {
2020-04-14 06:43:26 +02:00
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
2022-09-20 05:28:47 +02:00
hash = "sha256-pi+dBJE+EqQpyZAkIV7duK1g378J6BgjIiFcjV5H1fQ=";
2018-11-20 23:02:24 +01:00
};
2022-09-20 05:28:47 +02:00
cargoSha256 = "sha256-nRTGKW33NO2vRkvpNVk4pT1DrHPEsSfhwf8y5pJ+n9U=";
2018-11-20 23:02:24 +01:00
2022-03-18 10:13:05 +01:00
nativeBuildInputs = [
installShellFiles
];
buildInputs = lib.optionals stdenv.isDarwin [
Security
];
checkFlags = [
"--skip=bind_ipv4_ipv6::case_2"
"--skip=cant_navigate_up_the_root"
2022-09-20 05:28:47 +02:00
"--skip=qrcode_hidden_in_tty_when_disabled"
"--skip=qrcode_shown_in_tty_when_enabled"
];
2018-11-20 23:02:24 +01:00
postInstall = ''
2022-04-19 13:01:51 +02: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)
'';
meta = with lib; {
2022-03-18 10:13:05 +01:00
description = "CLI tool to serve files and directories over HTTP";
2020-04-14 06:43:26 +02:00
homepage = "https://github.com/svenstaro/miniserve";
changelog = "https://github.com/svenstaro/miniserve/blob/v${version}/CHANGELOG.md";
2020-04-14 06:43:26 +02:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ figsoda ];
2018-11-20 23:02:24 +01:00
};
}