2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-04-14 05:43:26 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, zlib
|
|
|
|
, Security
|
|
|
|
}:
|
2018-11-20 22:02:24 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "miniserve";
|
2021-01-05 06:59:43 +00:00
|
|
|
version = "0.10.4";
|
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}";
|
2021-01-05 06:59:43 +00:00
|
|
|
sha256 = "0hskb72gnp66vkyxsqnxhjcqgvjj7wbd2nm5wxp94abc5l1fiigv";
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
|
2021-01-05 06:59:43 +00:00
|
|
|
cargoSha256 = "0s1gdngpf6gxz2lyapblxxmc6aydg2i9kmrfvngkbmqh4as1a2vl";
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2020-04-14 05:43:26 +01:00
|
|
|
nativeBuildInputs = [ pkg-config zlib ];
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
2018-11-20 22:02:24 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-20 22:02:24 +00:00
|
|
|
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-10-08 15:21:30 +01:00
|
|
|
maintainers = with maintainers; [ zowoq ];
|
2020-04-14 05:43:26 +01:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 22:02:24 +00:00
|
|
|
};
|
|
|
|
}
|