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

29 lines
829 B
Nix
Raw Normal View History

2019-12-21 03:41:06 +00:00
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, openssl }:
2018-11-20 22:02:24 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "miniserve";
2019-12-21 03:41:06 +00:00
version = "0.5.0";
2018-11-20 22:02:24 +00:00
src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
2019-12-21 03:41:06 +00:00
sha256 = "06cxkkf3sf84prba65dymr1hg7mwizmsax0dlljh0lcmvlcpzi08";
2018-11-20 22:02:24 +00:00
};
cargoSha256 = "1v4rvk6h78797wshw3m0qabb7g4i4mbj1vs5d41izgb0swnzk4vy";
2019-12-21 03:41:06 +00:00
RUSTC_BOOTSTRAP = 1;
2018-11-20 22:02:24 +00:00
nativeBuildInputs = [ cmake pkgconfig zlib ];
2019-12-21 03:41:06 +00:00
buildInputs = [ openssl ];
2018-11-20 22:02:24 +00:00
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;
};
}