2020-04-14 05:43:26 +01:00
|
|
|
{ stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, zlib
|
|
|
|
, openssl
|
|
|
|
, Security
|
|
|
|
}:
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "miniserve";
|
2020-03-14 16:59:09 +00:00
|
|
|
version = "0.6.0";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-04-14 05:43:26 +01:00
|
|
|
owner = "svenstaro";
|
|
|
|
repo = "miniserve";
|
|
|
|
rev = "v${version}";
|
2020-03-14 16:59:09 +00:00
|
|
|
sha256 = "0ybxnxjg0vqm4q60z4zjl3hfls0s2rvy44m6jgyhlj1p6cr3dbyw";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2020-03-14 16:59:09 +00:00
|
|
|
cargoSha256 = "0ypxv9wqcnjxjdrvdparddpssrarnifr43dq7kcr4l3fd1anl40a";
|
2019-12-21 03:41:06 +00:00
|
|
|
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2020-04-14 05:43:26 +01:00
|
|
|
nativeBuildInputs = [ pkg-config zlib ];
|
|
|
|
buildInputs = if stdenv.isDarwin then [ Security ] else [ 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!";
|
2020-04-14 05:43:26 +01:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
|
|
license = with licenses; [ mit ];
|
2018-11-20 22:02:24 +00:00
|
|
|
maintainers = with maintainers; [ nequissimus ];
|
2020-04-14 05:43:26 +01:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|