61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, pkg-config
|
|
, zlib
|
|
, libiconv
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "miniserve";
|
|
version = "0.19.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = "miniserve";
|
|
rev = "v${version}";
|
|
hash = "sha256-vpLa0ipRV+JZoRa7jKn9ZNITvoQ8ABG2Qw1SyMZayK0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-zBBU55VlXWYISMbKv07UfOPZ3vWRlpp4estuCcDBDDY=";
|
|
|
|
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 = ''
|
|
$out/bin/miniserve --print-manpage >miniserve.1
|
|
installManPage miniserve.1
|
|
|
|
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 = "CLI tool to serve files and directories over HTTP";
|
|
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;
|
|
};
|
|
}
|