nixpkgs-suyu/pkgs/tools/misc/miniserve/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-04-14 06:43:26 +02:00
, rustPlatform
, fetchFromGitHub
, installShellFiles
2020-04-14 06:43:26 +02:00
, pkg-config
, zlib
, 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";
2022-03-16 13:59:56 +01:00
version = "0.19.3";
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}";
2022-03-18 10:13:05 +01:00
hash = "sha256-JlpjDUX8v7sGADhdKNQXoklbl/fw8DT0A6hEaUG61TQ=";
2018-11-20 23:02:24 +01:00
};
2022-03-16 13:59:56 +01:00
cargoSha256 = "sha256-5V8+Mcuu3fxG399QjW++/uWpPMvVWBfhI/L/6pmbkVY=";
2018-11-20 23:02:24 +01:00
2022-03-18 10:13:05 +01:00
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"
];
2018-11-20 23:02:24 +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)
'';
meta = with lib; {
2022-03-18 10:13:05 +01:00
description = "CLI tool to serve files and directories over HTTP";
2020-04-14 06:43:26 +02:00
homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ];
2021-12-30 10:42:11 +01:00
maintainers = with maintainers; [ ];
2020-04-14 06:43:26 +02:00
platforms = platforms.unix;
# https://hydra.nixos.org/build/162650896/nixlog/1
broken = stdenv.isDarwin && stdenv.isAarch64;
2018-11-20 23:02:24 +01:00
};
}