miniserve: update description

This commit is contained in:
Fabian Affolter 2022-03-18 10:13:05 +01:00 committed by GitHub
parent b23e8d2dee
commit 4c0c1a5769
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,13 +17,21 @@ rustPlatform.buildRustPackage rec {
owner = "svenstaro"; owner = "svenstaro";
repo = "miniserve"; repo = "miniserve";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-JlpjDUX8v7sGADhdKNQXoklbl/fw8DT0A6hEaUG61TQ="; hash = "sha256-JlpjDUX8v7sGADhdKNQXoklbl/fw8DT0A6hEaUG61TQ=";
}; };
cargoSha256 = "sha256-5V8+Mcuu3fxG399QjW++/uWpPMvVWBfhI/L/6pmbkVY="; cargoSha256 = "sha256-5V8+Mcuu3fxG399QjW++/uWpPMvVWBfhI/L/6pmbkVY=";
nativeBuildInputs = [ installShellFiles pkg-config zlib ]; nativeBuildInputs = [
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; installShellFiles
pkg-config
zlib
];
buildInputs = lib.optionals stdenv.isDarwin [
libiconv
Security
];
checkFlags = [ checkFlags = [
"--skip=bind_ipv4_ipv6::case_2" "--skip=bind_ipv4_ipv6::case_2"
@ -38,7 +46,7 @@ rustPlatform.buildRustPackage rec {
''; '';
meta = with lib; { meta = with lib; {
description = "For when you really just want to serve some files over HTTP right now!"; description = "CLI tool to serve files and directories over HTTP";
homepage = "https://github.com/svenstaro/miniserve"; homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];