miniserve: 0.5.0 -> 0.6.0

This commit is contained in:
Vladyslav M 2020-03-14 18:59:09 +02:00 committed by Alyssa Ross
parent c6c753668d
commit 9d8580fe4c

View file

@ -1,26 +1,26 @@
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, openssl }:
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkg-config, zlib, openssl }:
rustPlatform.buildRustPackage rec {
pname = "miniserve";
version = "0.5.0";
version = "0.6.0";
src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
sha256 = "06cxkkf3sf84prba65dymr1hg7mwizmsax0dlljh0lcmvlcpzi08";
sha256 = "0ybxnxjg0vqm4q60z4zjl3hfls0s2rvy44m6jgyhlj1p6cr3dbyw";
};
cargoSha256 = "1v4rvk6h78797wshw3m0qabb7g4i4mbj1vs5d41izgb0swnzk4vy";
cargoSha256 = "0ypxv9wqcnjxjdrvdparddpssrarnifr43dq7kcr4l3fd1anl40a";
RUSTC_BOOTSTRAP = 1;
nativeBuildInputs = [ cmake pkgconfig zlib ];
nativeBuildInputs = [ cmake pkg-config zlib ];
buildInputs = [ openssl ];
meta = with stdenv.lib; {
description = "For when you really just want to serve some files over HTTP right now!";
homepage = https://github.com/svenstaro/miniserve;
homepage = "https://github.com/svenstaro/miniserve";
license = with licenses; [ mit ];
maintainers = with maintainers; [ nequissimus ];
platforms = platforms.linux;