2021-02-28 03:03:03 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-14 04:43:26 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-03-29 06:30:54 +00:00
|
|
|
, installShellFiles
|
2020-04-14 04:43:26 +00:00
|
|
|
, pkg-config
|
|
|
|
, zlib
|
2021-03-21 05:01:06 +00:00
|
|
|
, libiconv
|
2020-04-14 04:43:26 +00:00
|
|
|
, Security
|
|
|
|
}:
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "miniserve";
|
2021-08-27 08:04:10 +00:00
|
|
|
version = "0.15.0";
|
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}";
|
2021-08-27 08:04:10 +00:00
|
|
|
sha256 = "sha256-hcGpd23CM5r8tq7Wyf4/aJwTCVJ9POmZJHZvIdcF4Qg=";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2021-08-27 08:04:10 +00:00
|
|
|
cargoSha256 = "sha256-TnafvDbCZhIDnjGJThgYnwFs6O6/RvKFsll3gUh2mjQ=";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2021-03-29 06:30:54 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config zlib ];
|
2021-03-21 05:01:06 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
|
|
|
checkFlags = [ "--skip=cant_navigate_up_the_root" ];
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2021-03-29 06:30:54 +00: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 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-20 22:02:24 +00:00
|
|
|
description = "For when you really just want to serve some files over HTTP right now!";
|
2020-04-14 04:43:26 +00:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
|
|
license = with licenses; [ mit ];
|
2020-10-08 14:21:30 +00:00
|
|
|
maintainers = with maintainers; [ zowoq ];
|
2020-04-14 04:43:26 +00:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|