2021-02-28 04:03:03 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-14 06:43:26 +02:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-03-29 08:30:54 +02:00
|
|
|
, installShellFiles
|
2020-04-14 06:43:26 +02:00
|
|
|
, pkg-config
|
|
|
|
, zlib
|
2021-03-21 06:01:06 +01:00
|
|
|
, libiconv
|
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";
|
2021-11-14 00:30:06 +01:00
|
|
|
version = "0.18.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}";
|
2021-11-14 00:30:06 +01:00
|
|
|
sha256 = "sha256-5rFxVk+D11Iqr0SP2VYdMEnFwijpxQT8e5EoK2PYtmQ=";
|
2018-11-20 23:02:24 +01:00
|
|
|
};
|
|
|
|
|
2021-11-14 00:30:06 +01:00
|
|
|
cargoSha256 = "sha256-40TJzhaD1bi/u8k472K89A51wKhm/XjBs13W6oU/06Q=";
|
2018-11-20 23:02:24 +01:00
|
|
|
|
2021-03-29 08:30:54 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config zlib ];
|
2021-03-21 06:01:06 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
2021-08-31 23:28:13 +02:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=bind_ipv4_ipv6::case_2"
|
|
|
|
"--skip=cant_navigate_up_the_root"
|
|
|
|
];
|
2018-11-20 23:02:24 +01:00
|
|
|
|
2021-03-29 08:30:54 +02:00
|
|
|
postInstall = ''
|
|
|
|
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 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-11-20 23:02:24 +01:00
|
|
|
description = "For when you really just want to serve some files over HTTP right now!";
|
2020-04-14 06:43:26 +02:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
|
|
license = with licenses; [ mit ];
|
2020-10-08 16:21:30 +02:00
|
|
|
maintainers = with maintainers; [ zowoq ];
|
2020-04-14 06:43:26 +02:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 23:02:24 +01:00
|
|
|
};
|
|
|
|
}
|