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-05-15 01:08:48 +01:00
|
|
|
version = "0.7.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-05-15 01:08:48 +01:00
|
|
|
sha256 = "06nrb84xfvx02yc4bjn1szfq3bjy8mqgxwwrjghl7vpcw51qhlk5";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2020-05-15 01:08:48 +01:00
|
|
|
cargoSha256 = "0mk8hvhjqggfr410yka9ygb41l1bnsizs8py3100xf685yxy5mhl";
|
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 ];
|
2020-06-08 04:24:35 +01:00
|
|
|
maintainers = with maintainers; [ nequissimus zowoq ];
|
2020-04-14 05:43:26 +01:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|