49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, pkg-config
|
|
, zlib
|
|
, libiconv
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "miniserve";
|
|
version = "0.19.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = "miniserve";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/LmLz4hTmOjpR4Bqf+hABh3PSeaO/sSz/EgHp+nM20o=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-/KL5c5OeflNDKWuE5Gzqgcew9zf8HFjvmBid+mQSqZE=";
|
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config zlib ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
checkFlags = [
|
|
"--skip=bind_ipv4_ipv6::case_2"
|
|
"--skip=cant_navigate_up_the_root"
|
|
];
|
|
|
|
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)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "For when you really just want to serve some files over HTTP right now!";
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.unix;
|
|
# https://hydra.nixos.org/build/162650896/nixlog/1
|
|
broken = stdenv.isDarwin && stdenv.isAarch64;
|
|
};
|
|
}
|