556f7c1008
Infra upgrade as part of #79975; no functional change expected.
29 lines
829 B
Nix
29 lines
829 B
Nix
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, openssl }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "miniserve";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = "miniserve";
|
|
rev = "v${version}";
|
|
sha256 = "06cxkkf3sf84prba65dymr1hg7mwizmsax0dlljh0lcmvlcpzi08";
|
|
};
|
|
|
|
cargoSha256 = "1v4rvk6h78797wshw3m0qabb7g4i4mbj1vs5d41izgb0swnzk4vy";
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig 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;
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ nequissimus ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|