2021-02-28 04:03:03 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-14 06:43:26 +02:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, zlib
|
2021-03-21 06:01:06 +01:00
|
|
|
, libiconv
|
2020-04-14 06:43:26 +02:00
|
|
|
, Security
|
|
|
|
}:
|
2018-11-20 23:02:24 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "miniserve";
|
2021-03-27 17:49:01 +01:00
|
|
|
version = "0.12.1";
|
2018-11-20 23:02:24 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-04-14 06:43:26 +02:00
|
|
|
owner = "svenstaro";
|
|
|
|
repo = "miniserve";
|
|
|
|
rev = "v${version}";
|
2021-03-27 17:49:01 +01:00
|
|
|
sha256 = "sha256-1LyDwQWC8cb3Sq8lZ9eDpZMcu5/yh0BJFuOWQ3iTtpY=";
|
2018-11-20 23:02:24 +01:00
|
|
|
};
|
|
|
|
|
2021-03-27 17:49:01 +01:00
|
|
|
cargoSha256 = "sha256-11aP0/p9wC9o1KuM+CLAuHhZxuYff6nvJPj0/yjb1+E=";
|
2018-11-20 23:02:24 +01:00
|
|
|
|
2020-04-14 06:43:26 +02:00
|
|
|
nativeBuildInputs = [ pkg-config zlib ];
|
2021-03-21 06:01:06 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
|
|
|
checkFlags = [ "--skip=cant_navigate_up_the_root" ];
|
2018-11-20 23:02:24 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-11-20 23:02:24 +01:00
|
|
|
description = "For when you really just want to serve some files over HTTP right now!";
|
2020-04-14 06:43:26 +02:00
|
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
|
|
license = with licenses; [ mit ];
|
2020-10-08 16:21:30 +02:00
|
|
|
maintainers = with maintainers; [ zowoq ];
|
2020-04-14 06:43:26 +02:00
|
|
|
platforms = platforms.unix;
|
2018-11-20 23:02:24 +01:00
|
|
|
};
|
|
|
|
}
|