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";
|
2021-04-18 10:20:40 +01:00
|
|
|
version = "0.14.0";
|
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}";
|
2021-04-18 10:20:40 +01:00
|
|
|
sha256 = "sha256-Hv1aefuiu7pOlSMUjZLGY6bxVy+6myFH1afZZ5gtmi0=";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2021-04-18 10:20:40 +01:00
|
|
|
cargoSha256 = "sha256-CgiHluc9+5+hKwsC7UZimy1586QBUsj+TVlb2lQRXs0=";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2021-03-29 07:30:54 +01: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 07:30:54 +01: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 05:43:26 +01:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
|
|
license = with licenses; [ mit ];
|
2020-10-08 15:21:30 +01:00
|
|
|
maintainers = with maintainers; [ zowoq ];
|
2020-04-14 05:43:26 +01:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|