2021-02-28 03:03:03 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-14 05:43:26 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-03-29 07:30:54 +01:00
|
|
|
, installShellFiles
|
2020-04-14 05:43:26 +01:00
|
|
|
, pkg-config
|
|
|
|
, zlib
|
2021-03-21 05:01:06 +00:00
|
|
|
, libiconv
|
2020-04-14 05:43:26 +01:00
|
|
|
, Security
|
|
|
|
}:
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "miniserve";
|
2022-04-19 12:13:53 +01:00
|
|
|
version = "0.19.4";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-04-14 05:43:26 +01:00
|
|
|
owner = "svenstaro";
|
|
|
|
repo = "miniserve";
|
|
|
|
rev = "v${version}";
|
2022-04-19 12:13:53 +01:00
|
|
|
hash = "sha256-vpLa0ipRV+JZoRa7jKn9ZNITvoQ8ABG2Qw1SyMZayK0=";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2022-04-19 12:13:53 +01:00
|
|
|
cargoSha256 = "sha256-zBBU55VlXWYISMbKv07UfOPZ3vWRlpp4estuCcDBDDY=";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2022-03-18 09:13:05 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
pkg-config
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv
|
|
|
|
Security
|
|
|
|
];
|
2021-03-21 05:01:06 +00:00
|
|
|
|
2021-08-31 22:28:13 +01:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=bind_ipv4_ipv6::case_2"
|
|
|
|
"--skip=cant_navigate_up_the_root"
|
|
|
|
];
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2021-03-29 07:30:54 +01:00
|
|
|
postInstall = ''
|
2022-04-19 12:01:51 +01:00
|
|
|
$out/bin/miniserve --print-manpage >miniserve.1
|
|
|
|
installManPage miniserve.1
|
|
|
|
|
2021-03-29 07:30:54 +01: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)
|
|
|
|
'';
|
|
|
|
|
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 05:43:26 +01:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
|
|
license = with licenses; [ mit ];
|
2021-12-30 09:42:11 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-04-14 05:43:26 +01:00
|
|
|
platforms = platforms.unix;
|
2022-01-01 23:53:13 +00:00
|
|
|
# https://hydra.nixos.org/build/162650896/nixlog/1
|
|
|
|
broken = stdenv.isDarwin && stdenv.isAarch64;
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|