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

45 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-04-14 04:43:26 +00:00
, rustPlatform
, fetchFromGitHub
, installShellFiles
2020-04-14 04:43:26 +00:00
, pkg-config
, zlib
, 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";
version = "0.13.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}";
sha256 = "sha256-1nXhAYvvvUQb0RcWidsRMQOhU8eXt7ngzodsMkYvqvg=";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "sha256-P5ukE7eXBRJMrc7+T9/TMq2uGs0AuZliHTtoqiZXNZw=";
2018-11-20 22:02:24 +00:00
nativeBuildInputs = [ installShellFiles pkg-config zlib ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
checkFlags = [ "--skip=cant_navigate_up_the_root" ];
2018-11-20 22:02:24 +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)
'';
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 ];
maintainers = with maintainers; [ zowoq ];
2020-04-14 04:43:26 +00:00
platforms = platforms.unix;
2018-11-20 22:02:24 +00:00
};
}